From 2d441d117451b0cb8efecfda9b41cd815a1276d7 Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Fri, 30 May 2025 15:58:22 +0200 Subject: [PATCH 1/6] openapi: adding more info in x-state --- .../clients_schema_to_openapi/src/lib.rs | 16 +- output/openapi/elasticsearch-openapi.json | 2565 ++++++++++++++--- .../elasticsearch-serverless-openapi.json | 1285 +++++++-- 3 files changed, 3309 insertions(+), 557 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index 3fe4bb03e1..6664466bb0 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -156,18 +156,22 @@ pub fn availability_as_extensions(availabilities: &Option) -> In // We may have several availabilities, but since generally exists only on stateful (stack) for (_, availability) in avails { if let Some(stability) = &availability.stability { + let mut since_str = "".to_string(); + if let Some(since) = &availability.since { + since_str = "; Added in ".to_string() + since; + } match stability { Stability::Beta => { - result.insert("x-beta".to_string(), serde_json::Value::Bool(true)); + let beta_since = "Beta".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(beta_since)); } Stability::Experimental => { - result.insert("x-state".to_string(), serde_json::Value::String("Technical preview".to_string())); + let exp_since = "Technical preview".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(exp_since)); } Stability::Stable => { - if let Some(since) = &availability.since { - let stable_since = "Added in ".to_string() + since; - result.insert("x-state".to_string(), serde_json::Value::String(stable_since)); - } + let stable_since = "Generally available".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(stable_since)); } } } diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 880e764ae1..68a32e5ea7 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -78,6 +78,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -85,6 +86,9 @@ "source": "GET /_async_search/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -118,7 +122,7 @@ } } }, - "x-state": "Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0" } }, "/_async_search/status/{id}": { @@ -181,6 +185,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -188,6 +193,9 @@ "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_async_search": { @@ -337,6 +345,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -344,6 +353,9 @@ "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_async_search": { @@ -496,6 +508,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -503,6 +516,9 @@ "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_autoscaling/policy/{name}": { @@ -558,6 +574,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -565,6 +582,9 @@ "source": "GET /_autoscaling/policy/my_autoscaling_policy\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -648,6 +668,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -655,6 +676,9 @@ "source": "PUT /_autoscaling/policy/\n{\n \"roles\": [],\n \"deciders\": {\n \"fixed\": {\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -718,6 +742,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -725,6 +750,9 @@ "source": "DELETE /_autoscaling/policy/*\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_autoscaling/capacity": { @@ -780,6 +808,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -787,6 +816,9 @@ "source": "GET /_autoscaling/capacity\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_bulk": { @@ -843,12 +875,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -903,12 +939,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_bulk": { @@ -968,12 +1008,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1031,12 +1075,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases": { @@ -1066,12 +1114,16 @@ "$ref": "#/components/responses/cat.aliases-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/aliases?format=json&v=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases/{name}": { @@ -1104,12 +1156,16 @@ "$ref": "#/components/responses/cat.aliases-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/aliases?format=json&v=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/allocation": { @@ -1142,12 +1198,16 @@ "$ref": "#/components/responses/cat.allocation-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/allocation?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/allocation/{node_id}": { @@ -1183,12 +1243,16 @@ "$ref": "#/components/responses/cat.allocation-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/allocation?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates": { @@ -1218,6 +1282,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ { @@ -1225,6 +1290,9 @@ "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates/{name}": { @@ -1257,6 +1325,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ { @@ -1264,6 +1333,9 @@ "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count": { @@ -1287,12 +1359,16 @@ "$ref": "#/components/responses/cat.count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count/{index}": { @@ -1319,12 +1395,16 @@ "$ref": "#/components/responses/cat.count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/fielddata": { @@ -1354,12 +1434,16 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/fielddata/{fields}": { @@ -1392,12 +1476,16 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/health": { @@ -1471,12 +1559,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/health?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat": { @@ -1498,7 +1590,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_cat/indices": { @@ -1543,12 +1636,16 @@ "$ref": "#/components/responses/cat.indices-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/indices/{index}": { @@ -1596,12 +1693,16 @@ "$ref": "#/components/responses/cat.indices-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/master": { @@ -1675,12 +1776,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/master?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics": { @@ -1713,6 +1818,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1720,6 +1826,9 @@ "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1755,6 +1864,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1762,6 +1872,9 @@ "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds": { @@ -1791,6 +1904,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1798,6 +1912,9 @@ "source": "GET _cat/ml/datafeeds?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1830,6 +1947,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1837,6 +1955,9 @@ "source": "GET _cat/ml/datafeeds?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors": { @@ -1869,6 +1990,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1876,6 +1998,9 @@ "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1911,6 +2036,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1918,6 +2044,9 @@ "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models": { @@ -1956,6 +2085,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1963,6 +2093,9 @@ "source": "GET _cat/ml/trained_models?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models/{model_id}": { @@ -2004,6 +2137,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -2011,6 +2145,9 @@ "source": "GET _cat/ml/trained_models?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/nodeattrs": { @@ -2090,12 +2227,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/nodeattrs?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/nodes": { @@ -2212,12 +2353,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/nodes?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/pending_tasks": { @@ -2301,12 +2446,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/pending_tasks?v=trueh=insertOrder,timeInQueue,priority,source&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/plugins": { @@ -2390,12 +2539,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/plugins?v=true&s=component&h=name,component,version,description&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/recovery": { @@ -2434,12 +2587,16 @@ "$ref": "#/components/responses/cat.recovery-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/recovery?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/recovery/{index}": { @@ -2481,12 +2638,16 @@ "$ref": "#/components/responses/cat.recovery-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/recovery?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/repositories": { @@ -2560,6 +2721,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 2.1.0", "x-codeSamples": [ { @@ -2567,6 +2729,9 @@ "source": "GET /_cat/repositories?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 2.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/segments": { @@ -2599,12 +2764,16 @@ "$ref": "#/components/responses/cat.segments-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/segments?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/segments/{index}": { @@ -2640,12 +2809,16 @@ "$ref": "#/components/responses/cat.segments-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/segments?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/shards": { @@ -2678,12 +2851,16 @@ "$ref": "#/components/responses/cat.shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/shards?format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/shards/{index}": { @@ -2719,12 +2896,16 @@ "$ref": "#/components/responses/cat.shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/shards?format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/snapshots": { @@ -2757,6 +2938,7 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.1.0", "x-codeSamples": [ { @@ -2764,6 +2946,9 @@ "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" } ] +======= + "x-state": "Generally available; Added in 2.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/snapshots/{repository}": { @@ -2799,6 +2984,7 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.1.0", "x-codeSamples": [ { @@ -2806,6 +2992,9 @@ "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" } ] +======= + "x-state": "Generally available; Added in 2.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/tasks": { @@ -2935,6 +3124,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -2942,6 +3132,9 @@ "source": "GET _cat/tasks?v=true&format=json\n" } ] +======= + "x-state": "Technical preview; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/templates": { @@ -2971,6 +3164,7 @@ "$ref": "#/components/responses/cat.templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.2.0", "x-codeSamples": [ { @@ -2978,6 +3172,9 @@ "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/templates/{name}": { @@ -3010,6 +3207,7 @@ "$ref": "#/components/responses/cat.templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.2.0", "x-codeSamples": [ { @@ -3017,6 +3215,9 @@ "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/thread_pool": { @@ -3049,12 +3250,16 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/thread_pool?format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/thread_pool/{thread_pool_patterns}": { @@ -3090,12 +3295,16 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/thread_pool?format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms": { @@ -3131,6 +3340,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -3138,6 +3348,9 @@ "source": "GET /_cat/transforms?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms/{transform_id}": { @@ -3176,6 +3389,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -3183,6 +3397,9 @@ "source": "GET /_cat/transforms?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}": { @@ -3209,6 +3426,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3216,6 +3434,9 @@ "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -3344,6 +3565,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3351,6 +3573,9 @@ "source": "PUT /_ccr/auto_follow/my_auto_follow_pattern\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index_patterns\" :\n [\n \"leader_index*\"\n ],\n \"follow_index_pattern\" : \"{{leader_index}}-follower\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -3403,6 +3628,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3410,6 +3636,9 @@ "source": "DELETE /_ccr/auto_follow/my_auto_follow_pattern\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/follow": { @@ -3558,6 +3787,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3565,6 +3795,9 @@ "source": "PUT /follower_index/_ccr/follow?wait_for_active_shards=1\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index\" : \"leader_index\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/info": { @@ -3636,6 +3869,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -3643,6 +3877,9 @@ "source": "GET /follower_index/_ccr/info\n" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/stats": { @@ -3709,6 +3946,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3716,6 +3954,9 @@ "source": "GET /follower_index/_ccr/stats\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/forget_follower": { @@ -3808,6 +4049,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -3815,6 +4057,9 @@ "source": "POST //_ccr/forget_follower\n{\n \"follower_cluster\" : \"\",\n \"follower_index\" : \"\",\n \"follower_index_uuid\" : \"\",\n \"leader_remote_cluster\" : \"\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow": { @@ -3838,6 +4083,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3845,6 +4091,9 @@ "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}/pause": { @@ -3899,6 +4148,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -3906,6 +4156,9 @@ "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/pause\n" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/pause_follow": { @@ -3957,6 +4210,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -3964,6 +4218,9 @@ "source": "POST /follower_index/_ccr/pause_follow\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}/resume": { @@ -4018,6 +4275,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -4025,6 +4283,9 @@ "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/resume\n" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/resume_follow": { @@ -4126,6 +4387,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -4133,6 +4395,9 @@ "source": "POST /follower_index/_ccr/resume_follow\n{\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/stats": { @@ -4195,6 +4460,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -4202,6 +4468,9 @@ "source": "GET /_ccr/stats\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/unfollow": { @@ -4256,6 +4525,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -4263,6 +4533,9 @@ "source": "POST /follower_index/_ccr/unfollow\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll": { @@ -4295,12 +4568,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4331,12 +4608,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4356,12 +4637,16 @@ "$ref": "#/components/responses/clear_scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll/{scroll_id}": { @@ -4397,12 +4682,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4436,12 +4725,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4466,12 +4759,16 @@ "$ref": "#/components/responses/clear_scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_pit": { @@ -4537,6 +4834,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -4544,6 +4842,9 @@ "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/allocation/explain": { @@ -4573,6 +4874,7 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -4580,6 +4882,9 @@ "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4607,6 +4912,7 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -4614,6 +4920,9 @@ "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_component_template/{name}": { @@ -4646,7 +4955,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "put": { "tags": [ @@ -4674,6 +4983,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -4681,6 +4991,9 @@ "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4708,6 +5021,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -4715,6 +5029,9 @@ "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4768,7 +5085,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "head": { "tags": [ @@ -4818,7 +5135,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" } }, "/_cluster/voting_config_exclusions": { @@ -4882,7 +5199,7 @@ } } }, - "x-state": "Added in 7.0.0" + "x-state": "Generally available; Added in 7.0.0" }, "delete": { "tags": [ @@ -4924,7 +5241,7 @@ } } }, - "x-state": "Added in 7.0.0" + "x-state": "Generally available; Added in 7.0.0" } }, "/_component_template": { @@ -4954,7 +5271,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" } }, "/_cluster/settings": { @@ -5042,7 +5359,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -5153,12 +5471,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /_cluster/settings\n{\n \"persistent\" : {\n \"indices.recovery.max_bytes_per_sec\" : \"50mb\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/health": { @@ -5209,6 +5531,7 @@ "$ref": "#/components/responses/cluster.health-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -5216,6 +5539,9 @@ "source": "GET _cluster/health\n" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/health/{index}": { @@ -5269,6 +5595,7 @@ "$ref": "#/components/responses/cluster.health-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -5276,6 +5603,9 @@ "source": "GET _cluster/health\n" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_info/{target}": { @@ -5334,7 +5664,7 @@ } } }, - "x-state": "Added in 8.9.0" + "x-state": "Generally available; Added in 8.9.0" } }, "/_cluster/pending_tasks": { @@ -5389,7 +5719,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_remote/info": { @@ -5418,7 +5749,7 @@ } } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" } }, "/_cluster/reroute": { @@ -5545,6 +5876,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -5552,6 +5884,9 @@ "source": "POST /_cluster/reroute?metric=none\n{\n \"commands\": [\n {\n \"move\": {\n \"index\": \"test\", \"shard\": 0,\n \"from_node\": \"node1\", \"to_node\": \"node2\"\n }\n },\n {\n \"allocate_replica\": {\n \"index\": \"test\", \"shard\": 1,\n \"node\": \"node3\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/state": { @@ -5593,7 +5928,7 @@ "$ref": "#/components/responses/cluster.state-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_cluster/state/{metric}": { @@ -5638,7 +5973,7 @@ "$ref": "#/components/responses/cluster.state-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_cluster/state/{metric}/{index}": { @@ -5686,7 +6021,7 @@ "$ref": "#/components/responses/cluster.state-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_cluster/stats": { @@ -5710,7 +6045,7 @@ "$ref": "#/components/responses/cluster.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_cluster/stats/nodes/{node_id}": { @@ -5737,7 +6072,7 @@ "$ref": "#/components/responses/cluster.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_connector/{connector_id}/_check_in": { @@ -5786,7 +6121,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}": { @@ -5832,7 +6167,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "put": { "tags": [ @@ -5853,6 +6188,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -5860,6 +6196,9 @@ "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -5918,7 +6257,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector": { @@ -6028,7 +6367,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "put": { "tags": [ @@ -6044,6 +6383,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -6051,6 +6391,9 @@ "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6112,7 +6455,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -6156,7 +6499,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_check_in": { @@ -6286,7 +6629,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "delete": { "tags": [ @@ -6325,7 +6668,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_error": { @@ -6491,7 +6834,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "post": { "tags": [ @@ -6549,6 +6892,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -6556,6 +6900,9 @@ "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/_sync_job/{connector_sync_job_id}/_stats": { @@ -6674,7 +7021,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}/_api_key_id": { @@ -6746,6 +7093,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -6753,6 +7101,9 @@ "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_configuration": { @@ -6830,6 +7181,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -6837,6 +7189,9 @@ "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_error": { @@ -6915,6 +7270,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -6922,6 +7278,9 @@ "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_features": { @@ -7086,6 +7445,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7093,6 +7453,9 @@ "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -7154,7 +7517,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}/_index_name": { @@ -7233,6 +7596,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7240,6 +7604,9 @@ "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_name": { @@ -7310,6 +7677,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7317,6 +7685,9 @@ "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_native": { @@ -7377,7 +7748,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/{connector_id}/_pipeline": { @@ -7449,6 +7820,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7456,6 +7828,9 @@ "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_scheduling": { @@ -7529,6 +7904,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7536,6 +7912,9 @@ "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_service_type": { @@ -7606,6 +7985,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -7613,6 +7993,9 @@ "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_status": { @@ -7683,6 +8066,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -7690,6 +8074,9 @@ "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_count": { @@ -7752,12 +8139,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7818,12 +8209,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_count": { @@ -7889,12 +8284,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7958,12 +8357,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_create/{id}": { @@ -8032,6 +8435,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -8039,6 +8443,9 @@ "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8105,6 +8512,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -8112,6 +8520,9 @@ "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_dangling/{index_uuid}": { @@ -8184,6 +8595,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -8191,6 +8603,9 @@ "source": "POST /_dangling/zmM4e0JtBkeUjiHD-MihPQ?accept_data_loss=true\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8255,7 +8670,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_dangling": { @@ -8294,7 +8709,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/{index}/_doc/{id}": { @@ -8458,12 +8873,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET my-index-000001/_doc/0\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -8527,12 +8946,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8596,12 +9019,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8732,12 +9159,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /my-index-000001/_doc/1\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -8877,7 +9308,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/{index}/_delete_by_query": { @@ -9320,6 +9752,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -9327,6 +9760,9 @@ "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_delete_by_query/{task_id}/_rethrottle": { @@ -9372,7 +9808,7 @@ } } }, - "x-state": "Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0" } }, "/_scripts/{id}": { @@ -9432,7 +9868,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -9466,12 +9903,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -9505,12 +9946,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -9563,7 +10008,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_enrich/policy/{name}": { @@ -9587,7 +10033,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "put": { "tags": [ @@ -9652,7 +10098,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "delete": { "tags": [ @@ -9696,7 +10142,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -9760,7 +10206,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_enrich/policy": { @@ -9781,7 +10227,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_enrich/_stats": { @@ -9843,7 +10289,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_eql/search/{id}": { @@ -9899,7 +10345,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "delete": { "tags": [ @@ -9933,7 +10379,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_eql/search/status/{id}": { @@ -10003,7 +10449,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/{index}/_eql/search": { @@ -10054,6 +10500,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -10061,6 +10508,9 @@ "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -10109,6 +10559,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -10116,6 +10567,9 @@ "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query/async": { @@ -10275,6 +10729,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -10282,6 +10737,9 @@ "source": "POST /_query/async\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"wait_for_completion_timeout\": \"2s\",\n \"include_ccs_metadata\": true\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query/async/{id}": { @@ -10350,7 +10808,7 @@ } } }, - "x-state": "Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0" }, "delete": { "tags": [ @@ -10387,7 +10845,7 @@ } } }, - "x-state": "Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0" } }, "/_query/async/{id}/stop": { @@ -10436,7 +10894,7 @@ } } }, - "x-state": "Added in 8.18.0" + "x-state": "Generally available; Added in 8.18.0" } }, "/_query/queries/{id}": { @@ -10507,7 +10965,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 9.1.0" } }, "/_query/queries": { @@ -10541,7 +10999,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 9.1.0" } }, "/_query": { @@ -10823,7 +11281,8 @@ } } } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -10957,7 +11416,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/{index}/_explain/{id}": { @@ -11020,12 +11479,16 @@ "$ref": "#/components/responses/explain-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11086,12 +11549,16 @@ "$ref": "#/components/responses/explain-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_features": { @@ -11146,7 +11613,7 @@ } } }, - "x-state": "Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0" } }, "/_features/_reset": { @@ -11198,7 +11665,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.12.0" } }, "/_field_caps": { @@ -11243,6 +11710,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -11250,6 +11718,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11292,6 +11763,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -11299,6 +11771,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_field_caps": { @@ -11346,6 +11821,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -11353,6 +11829,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11398,6 +11877,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -11405,6 +11885,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_fleet/global_checkpoints": { @@ -11505,7 +11988,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_fleet/_fleet_msearch": { @@ -11565,7 +12048,7 @@ "$ref": "#/components/responses/fleet.msearch-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" }, "post": { "tags": [ @@ -11623,7 +12106,7 @@ "$ref": "#/components/responses/fleet.msearch-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" } }, "/{index}/_fleet/_fleet_msearch": { @@ -11686,7 +12169,7 @@ "$ref": "#/components/responses/fleet.msearch-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" }, "post": { "tags": [ @@ -11747,7 +12230,7 @@ "$ref": "#/components/responses/fleet.msearch-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" } }, "/{index}/_fleet/_fleet_search": { @@ -11900,7 +12383,7 @@ "$ref": "#/components/responses/fleet.search-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" }, "post": { "tags": [ @@ -12051,7 +12534,7 @@ "$ref": "#/components/responses/fleet.search-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" } }, "/_script_context": { @@ -12084,7 +12567,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_script_language": { @@ -12124,7 +12608,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/{index}/_graph/explore": { @@ -12157,12 +12642,16 @@ "$ref": "#/components/responses/graph.explore-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -12193,12 +12682,16 @@ "$ref": "#/components/responses/graph.explore-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_health_report": { @@ -12225,7 +12718,7 @@ "$ref": "#/components/responses/health_report-200" } }, - "x-state": "Added in 8.7.0" + "x-state": "Generally available; Added in 8.7.0" } }, "/_health_report/{feature}": { @@ -12255,7 +12748,7 @@ "$ref": "#/components/responses/health_report-200" } }, - "x-state": "Added in 8.7.0" + "x-state": "Generally available; Added in 8.7.0" } }, "/_ilm/policy/{policy}": { @@ -12281,7 +12774,7 @@ "$ref": "#/components/responses/ilm.get_lifecycle-200" } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" }, "put": { "tags": [ @@ -12364,6 +12857,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.6.0", "x-codeSamples": [ { @@ -12371,6 +12865,9 @@ "source": "PUT _ilm/policy/my_policy\n{\n \"policy\": {\n \"_meta\": {\n \"description\": \"used for nginx log\",\n \"project\": {\n \"name\": \"myProject\",\n \"department\": \"myDepartment\"\n }\n },\n \"phases\": {\n \"warm\": {\n \"min_age\": \"10d\",\n \"actions\": {\n \"forcemerge\": {\n \"max_num_segments\": 1\n }\n }\n },\n \"delete\": {\n \"min_age\": \"30d\",\n \"actions\": {\n \"delete\": {}\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.6.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -12430,7 +12927,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/{index}/_ilm/explain": { @@ -12513,7 +13010,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/_ilm/policy": { @@ -12536,7 +13033,7 @@ "$ref": "#/components/responses/ilm.get_lifecycle-200" } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/_ilm/status": { @@ -12573,7 +13070,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/_ilm/migrate_to_data_tiers": { @@ -12699,6 +13196,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -12706,6 +13204,9 @@ "source": "POST /_ilm/migrate_to_data_tiers\n{\n \"legacy_template_to_delete\": \"global-template\",\n \"node_attribute\": \"custom_attribute_name\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ilm/move/{index}": { @@ -12780,6 +13281,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.6.0", "x-codeSamples": [ { @@ -12787,6 +13289,9 @@ "source": "POST _ilm/move/my-index-000001\n{\n \"current_step\": {\n \"phase\": \"new\",\n \"action\": \"complete\",\n \"name\": \"complete\"\n },\n \"next_step\": {\n \"phase\": \"warm\",\n \"action\": \"forcemerge\",\n \"name\": \"forcemerge\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.6.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ilm/remove": { @@ -12843,7 +13348,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/{index}/_ilm/retry": { @@ -12879,7 +13384,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/_ilm/start": { @@ -12930,7 +13435,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/_ilm/stop": { @@ -12981,7 +13486,7 @@ } } }, - "x-state": "Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0" } }, "/{index}/_doc": { @@ -13044,12 +13549,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_block/{block}": { @@ -13171,6 +13680,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -13178,6 +13688,9 @@ "source": "PUT /my-index-000001/_block/write\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_analyze": { @@ -13204,12 +13717,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13234,12 +13751,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_analyze": { @@ -13269,12 +13790,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13302,12 +13827,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/reindex/{index}/_cancel": { @@ -13343,7 +13872,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.18.0" } }, "/_cache/clear": { @@ -13384,7 +13913,8 @@ "200": { "$ref": "#/components/responses/indices.clear_cache-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_cache/clear": { @@ -13428,7 +13958,8 @@ "200": { "$ref": "#/components/responses/indices.clear_cache-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_clone/{target}": { @@ -13464,6 +13995,7 @@ "$ref": "#/components/responses/indices.clone-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -13471,6 +14003,9 @@ "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13504,6 +14039,7 @@ "$ref": "#/components/responses/indices.clone-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -13511,6 +14047,9 @@ "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_close": { @@ -13630,7 +14169,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/{index}": { @@ -13748,7 +14288,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -13869,12 +14410,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -13957,7 +14502,8 @@ } } } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -14046,7 +14592,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_data_stream/{name}": { @@ -14079,7 +14626,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "put": { "tags": [ @@ -14133,7 +14680,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "delete": { "tags": [ @@ -14187,7 +14734,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_create_from/{source}/{dest}": { @@ -14214,7 +14761,7 @@ "$ref": "#/components/responses/indices.create_from-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.18.0" }, "post": { "tags": [ @@ -14239,7 +14786,7 @@ "$ref": "#/components/responses/indices.create_from-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.18.0" } }, "/_data_stream/_stats": { @@ -14260,7 +14807,7 @@ "$ref": "#/components/responses/indices.data_streams_stats-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_data_stream/{name}/_stats": { @@ -14284,7 +14831,7 @@ "$ref": "#/components/responses/indices.data_streams_stats-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/{index}/_alias/{name}": { @@ -14319,7 +14866,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -14350,12 +14898,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -14386,12 +14938,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -14418,7 +14974,8 @@ "200": { "$ref": "#/components/responses/indices.delete_alias-200" } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -14451,7 +15008,8 @@ "200": { "$ref": "#/components/responses/indices.exists_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_aliases/{name}": { @@ -14484,12 +15042,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -14520,12 +15082,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -14552,7 +15118,8 @@ "200": { "$ref": "#/components/responses/indices.delete_alias-200" } - } + }, + "x-state": "Generally available" } }, "/_data_stream/{name}/_lifecycle": { @@ -14635,6 +15202,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -14642,6 +15210,9 @@ "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -14743,6 +15314,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -14750,6 +15322,9 @@ "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -14819,7 +15394,7 @@ } } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_data_stream/{name}/_options": { @@ -15067,7 +15642,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "put": { "tags": [ @@ -15098,6 +15673,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -15105,6 +15681,9 @@ "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -15135,6 +15714,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -15142,6 +15722,9 @@ "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -15195,7 +15778,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "head": { "tags": [ @@ -15254,7 +15837,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_template/{name}": { @@ -15287,7 +15871,8 @@ "$ref": "#/components/responses/indices.get_template-200" } }, - "deprecated": true + "deprecated": true, + "x-state": "Generally available" }, "put": { "tags": [ @@ -15324,7 +15909,8 @@ "$ref": "#/components/responses/indices.put_template-200" } }, - "deprecated": true + "deprecated": true, + "x-state": "Generally available" }, "post": { "tags": [ @@ -15361,7 +15947,8 @@ "$ref": "#/components/responses/indices.put_template-200" } }, - "deprecated": true + "deprecated": true, + "x-state": "Generally available" }, "delete": { "tags": [ @@ -15415,7 +16002,8 @@ } } }, - "deprecated": true + "deprecated": true, + "x-state": "Generally available" }, "head": { "tags": [ @@ -15477,7 +16065,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/{index}/_disk_usage": { @@ -15563,7 +16152,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.15.0" } }, "/{index}/_downsample/{target_index}": { @@ -15625,6 +16214,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -15632,6 +16222,9 @@ "source": "POST /my-time-series-index/_downsample/my-downsampled-time-series-index\n{\n \"fixed_interval\": \"1d\"\n}" } ] +======= + "x-state": "Technical preview; Added in 8.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_alias/{name}": { @@ -15663,7 +16256,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -15693,7 +16287,8 @@ "200": { "$ref": "#/components/responses/indices.exists_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_lifecycle/explain": { @@ -15772,6 +16367,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -15779,6 +16375,9 @@ "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_field_usage_stats": { @@ -15860,6 +16459,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -15867,6 +16467,9 @@ "source": "GET /my-index-000001/_field_usage_stats\n" } ] +======= + "x-state": "Technical preview; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_flush": { @@ -15898,7 +16501,8 @@ "200": { "$ref": "#/components/responses/indices.flush-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -15928,7 +16532,8 @@ "200": { "$ref": "#/components/responses/indices.flush-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_flush": { @@ -15963,7 +16568,8 @@ "200": { "$ref": "#/components/responses/indices.flush-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -15996,7 +16602,8 @@ "200": { "$ref": "#/components/responses/indices.flush-200" } - } + }, + "x-state": "Generally available" } }, "/_forcemerge": { @@ -16038,7 +16645,7 @@ "$ref": "#/components/responses/indices.forcemerge-200" } }, - "x-state": "Added in 2.1.0" + "x-state": "Generally available; Added in 2.1.0" } }, "/{index}/_forcemerge": { @@ -16083,7 +16690,7 @@ "$ref": "#/components/responses/indices.forcemerge-200" } }, - "x-state": "Added in 2.1.0" + "x-state": "Generally available; Added in 2.1.0" } }, "/_alias": { @@ -16112,7 +16719,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_alias": { @@ -16144,7 +16752,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" } }, "/_lifecycle/stats": { @@ -16196,6 +16805,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -16203,6 +16813,9 @@ "source": "GET _lifecycle/stats?human&pretty\n" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_data_stream": { @@ -16232,7 +16845,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_mapping/field/{fields}": { @@ -16265,12 +16878,16 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET publications/_mapping/field/title\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mapping/field/{fields}": { @@ -16306,12 +16923,16 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET publications/_mapping/field/title\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template": { @@ -16341,7 +16962,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_mapping": { @@ -16373,7 +16994,8 @@ "200": { "$ref": "#/components/responses/indices.get_mapping-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_mapping": { @@ -16408,7 +17030,8 @@ "200": { "$ref": "#/components/responses/indices.get_mapping-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -16451,12 +17074,16 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -16499,12 +17126,16 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/reindex/{index}/_status": { @@ -16588,7 +17219,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.18.0" } }, "/_settings": { @@ -16626,7 +17257,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -16672,12 +17304,16 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings": { @@ -16718,7 +17354,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -16767,12 +17404,16 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings/{name}": { @@ -16816,7 +17457,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" } }, "/_settings/{name}": { @@ -16857,7 +17499,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" } }, "/_template": { @@ -16887,7 +17530,8 @@ "$ref": "#/components/responses/indices.get_template-200" } }, - "deprecated": true + "deprecated": true, + "x-state": "Generally available" } }, "/_migration/reindex": { @@ -16920,7 +17564,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.18.0" } }, "/_data_stream/_migrate/{name}": { @@ -16976,7 +17620,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_data_stream/_modify": { @@ -17021,7 +17665,7 @@ } } }, - "x-state": "Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0" } }, "/{index}/_open": { @@ -17134,7 +17778,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_data_stream/_promote/{name}": { @@ -17180,7 +17825,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_recovery": { @@ -17204,12 +17849,16 @@ "$ref": "#/components/responses/indices.recovery-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_recovery?human\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_recovery": { @@ -17236,12 +17885,16 @@ "$ref": "#/components/responses/indices.recovery-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_recovery?human\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_refresh": { @@ -17267,7 +17920,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -17291,7 +17945,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_refresh": { @@ -17320,7 +17975,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -17347,7 +18003,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_reload_search_analyzers": { @@ -17383,6 +18040,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -17390,6 +18048,9 @@ "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -17423,6 +18084,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -17430,6 +18092,9 @@ "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/cluster": { @@ -17462,6 +18127,7 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -17469,6 +18135,9 @@ "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/cluster/{name}": { @@ -17504,6 +18173,7 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -17511,6 +18181,9 @@ "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/index/{name}": { @@ -17607,6 +18280,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -17614,6 +18288,9 @@ "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover": { @@ -17652,6 +18329,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17659,6 +18337,9 @@ "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover/{new_index}": { @@ -17700,6 +18381,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17707,6 +18389,9 @@ "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_segments": { @@ -17732,7 +18417,8 @@ "200": { "$ref": "#/components/responses/indices.segments-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_segments": { @@ -17761,7 +18447,8 @@ "200": { "$ref": "#/components/responses/indices.segments-200" } - } + }, + "x-state": "Generally available" } }, "/_shard_stores": { @@ -17791,12 +18478,16 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_shard_stores?status=green\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_shard_stores": { @@ -17829,12 +18520,16 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_shard_stores?status=green\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_shrink/{target}": { @@ -17870,6 +18565,7 @@ "$ref": "#/components/responses/indices.shrink-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17877,6 +18573,9 @@ "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -17910,6 +18609,7 @@ "$ref": "#/components/responses/indices.shrink-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17917,6 +18617,9 @@ "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate_index/{name}": { @@ -18012,6 +18715,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -18019,6 +18723,9 @@ "source": "POST /_index_template/_simulate_index/my-index-000001\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate": { @@ -18051,12 +18758,16 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate/{name}": { @@ -18092,12 +18803,16 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_split/{target}": { @@ -18133,6 +18848,7 @@ "$ref": "#/components/responses/indices.split-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -18140,6 +18856,9 @@ "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18173,6 +18892,7 @@ "$ref": "#/components/responses/indices.split-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -18180,6 +18900,9 @@ "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_stats": { @@ -18224,7 +18947,7 @@ "$ref": "#/components/responses/indices.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_stats/{metric}": { @@ -18272,7 +18995,7 @@ "$ref": "#/components/responses/indices.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_stats": { @@ -18320,7 +19043,7 @@ "$ref": "#/components/responses/indices.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_stats/{metric}": { @@ -18371,7 +19094,7 @@ "$ref": "#/components/responses/indices.stats-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_aliases": { @@ -18435,7 +19158,7 @@ } } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_validate/query": { @@ -18492,7 +19215,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -18547,7 +19270,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_validate/query": { @@ -18607,7 +19330,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -18665,7 +19388,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_inference/chat_completion/{inference_id}/_stream": { @@ -18744,6 +19467,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ { @@ -18751,6 +19475,9 @@ "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.18.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/completion/{inference_id}": { @@ -18840,6 +19567,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -18847,6 +19575,9 @@ "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{inference_id}": { @@ -18866,7 +19597,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "put": { "tags": [ @@ -18888,7 +19619,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "post": { "tags": [ @@ -18913,7 +19644,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "delete": { "tags": [ @@ -18937,7 +19668,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference/{task_type}/{inference_id}": { @@ -18960,7 +19691,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "put": { "tags": [ @@ -18985,7 +19716,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "post": { "tags": [ @@ -19013,7 +19744,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "delete": { "tags": [ @@ -19040,7 +19771,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference": { @@ -19055,7 +19786,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference/{task_type}/{alibabacloud_inference_id}": { @@ -19151,6 +19882,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -19158,6 +19890,9 @@ "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -19243,6 +19978,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -19250,6 +19986,9 @@ "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -19329,6 +20068,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -19336,6 +20076,9 @@ "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -19421,6 +20164,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -19428,6 +20172,9 @@ "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -19513,6 +20260,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -19520,6 +20268,9 @@ "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -19605,6 +20356,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -19612,6 +20364,9 @@ "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -19723,6 +20478,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -19730,6 +20486,9 @@ "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -19819,6 +20578,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -19826,6 +20586,9 @@ "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -19903,6 +20666,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -19910,6 +20674,9 @@ "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -19995,6 +20762,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -20002,6 +20770,9 @@ "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -20079,6 +20850,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -20086,6 +20858,9 @@ "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -20171,6 +20946,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ { @@ -20178,6 +20954,9 @@ "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.18.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -20254,6 +21033,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -20261,6 +21041,9 @@ "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -20346,6 +21129,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -20353,6 +21137,9 @@ "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -20438,6 +21225,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.19.0", "x-codeSamples": [ { @@ -20445,6 +21233,9 @@ "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.19.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -20518,6 +21309,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -20525,6 +21317,9 @@ "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/rerank/{inference_id}": { @@ -20619,6 +21414,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -20626,6 +21422,9 @@ "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/sparse_embedding/{inference_id}": { @@ -20715,6 +21514,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -20722,6 +21522,9 @@ "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/completion/{inference_id}/_stream": { @@ -20795,6 +21598,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -20802,6 +21606,9 @@ "source": "POST _inference/completion/openai-completion/_stream\n{\n \"input\": \"What is Elastic?\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/text_embedding/{inference_id}": { @@ -20891,6 +21698,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -20898,6 +21706,9 @@ "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{inference_id}/_update": { @@ -20921,7 +21732,7 @@ "$ref": "#/components/responses/inference.update-200" } }, - "x-state": "Added in 8.17.0" + "x-state": "Generally available; Added in 8.17.0" } }, "/_inference/{task_type}/{inference_id}/_update": { @@ -20948,7 +21759,7 @@ "$ref": "#/components/responses/inference.update-200" } }, - "x-state": "Added in 8.17.0" + "x-state": "Generally available; Added in 8.17.0" } }, "/": { @@ -21001,12 +21812,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -21022,7 +21837,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_ingest/geoip/database/{id}": { @@ -21043,7 +21859,7 @@ "$ref": "#/components/responses/ingest.get_geoip_database-200" } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" }, "put": { "tags": [ @@ -21119,7 +21935,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" }, "delete": { "tags": [ @@ -21173,7 +21989,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_ingest/ip_location/database/{id}": { @@ -21196,7 +22012,7 @@ "$ref": "#/components/responses/ingest.get_ip_location_database-200" } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" }, "put": { "tags": [ @@ -21259,7 +22075,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" }, "delete": { "tags": [ @@ -21312,7 +22128,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_ingest/pipeline/{id}": { @@ -21342,7 +22158,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" }, "put": { "tags": [ @@ -21460,6 +22276,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -21467,6 +22284,9 @@ "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -21523,7 +22343,7 @@ } } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" } }, "/_ingest/geoip/stats": { @@ -21565,7 +22385,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ingest/geoip/database": { @@ -21581,7 +22401,7 @@ "$ref": "#/components/responses/ingest.get_geoip_database-200" } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_ingest/ip_location/database": { @@ -21601,7 +22421,7 @@ "$ref": "#/components/responses/ingest.get_ip_location_database-200" } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_ingest/pipeline": { @@ -21628,7 +22448,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" } }, "/_ingest/processor/grok": { @@ -21665,7 +22485,7 @@ } } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -21689,6 +22509,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -21696,6 +22517,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21717,6 +22541,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -21724,6 +22549,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/pipeline/{id}/_simulate": { @@ -21750,6 +22578,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -21757,6 +22586,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21781,6 +22613,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -21788,6 +22621,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license": { @@ -21846,12 +22682,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_license\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -21879,12 +22719,16 @@ "$ref": "#/components/responses/license.post-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21912,12 +22756,16 @@ "$ref": "#/components/responses/license.post-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -21962,7 +22810,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_license/basic_status": { @@ -21998,6 +22847,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22005,6 +22855,9 @@ "source": "GET /_license/basic_status\n" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/trial_status": { @@ -22040,6 +22893,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -22047,6 +22901,9 @@ "source": "GET /_license/trial_status\n" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/start_basic": { @@ -22141,6 +22998,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22148,6 +23006,9 @@ "source": "POST /_license/start_basic?acknowledge=true\n" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/start_trial": { @@ -22225,6 +23086,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -22232,6 +23094,9 @@ "source": "POST /_license/start_trial?acknowledge=true\n" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_logstash/pipeline/{id}": { @@ -22255,6 +23120,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -22262,6 +23128,9 @@ "source": "GET _logstash/pipeline/my_pipeline\n" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -22311,6 +23180,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -22318,6 +23188,9 @@ "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -22350,7 +23223,7 @@ } } }, - "x-state": "Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0" } }, "/_logstash/pipeline": { @@ -22369,6 +23242,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -22376,6 +23250,9 @@ "source": "GET _logstash/pipeline/my_pipeline\n" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mget": { @@ -22420,6 +23297,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -22427,6 +23305,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22469,6 +23350,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -22476,6 +23358,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mget": { @@ -22523,6 +23408,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -22530,6 +23416,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22575,6 +23464,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -22582,6 +23472,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/deprecations": { @@ -22597,6 +23490,7 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -22604,6 +23498,9 @@ "source": "GET /_migration/deprecations\n" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_migration/deprecations": { @@ -22624,6 +23521,7 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.1.0", "x-codeSamples": [ { @@ -22631,6 +23529,9 @@ "source": "GET /_migration/deprecations\n" } ] +======= + "x-state": "Generally available; Added in 6.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/system_features": { @@ -22674,6 +23575,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.16.0", "x-codeSamples": [ { @@ -22681,6 +23583,9 @@ "source": "GET /_migration/system_features\n" } ] +======= + "x-state": "Generally available; Added in 7.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22724,6 +23629,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.16.0", "x-codeSamples": [ { @@ -22731,6 +23637,9 @@ "source": "POST /_migration/system_features\n" } ] +======= + "x-state": "Generally available; Added in 7.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/trained_models/{model_id}/deployment/cache/_clear": { @@ -22780,7 +23689,7 @@ } } }, - "x-state": "Added in 8.5.0" + "x-state": "Generally available; Added in 8.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -22882,7 +23791,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -22911,7 +23820,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "put": { "tags": [ @@ -22982,7 +23891,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -23009,7 +23918,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "delete": { "tags": [ @@ -23049,7 +23958,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -23101,7 +24010,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -23163,7 +24072,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "delete": { "tags": [ @@ -23229,7 +24138,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -23262,7 +24171,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" }, "put": { "tags": [ @@ -23402,7 +24311,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" }, "delete": { "tags": [ @@ -23461,7 +24370,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -23488,7 +24397,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -23691,7 +24600,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -23740,7 +24649,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/_delete_expired_data/{job_id}": { @@ -23770,7 +24679,7 @@ "$ref": "#/components/responses/ml.delete_expired_data-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/_delete_expired_data": { @@ -23797,7 +24706,7 @@ "$ref": "#/components/responses/ml.delete_expired_data-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -23824,7 +24733,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -23900,7 +24809,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -23940,7 +24849,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast": { @@ -24039,7 +24948,7 @@ } } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" }, "delete": { "tags": [ @@ -24064,7 +24973,7 @@ "$ref": "#/components/responses/ml.delete_forecast-200" } }, - "x-state": "Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast/{forecast_id}": { @@ -24094,7 +25003,7 @@ "$ref": "#/components/responses/ml.delete_forecast-200" } }, - "x-state": "Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -24121,7 +25030,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -24359,7 +25268,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -24435,7 +25344,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}": { @@ -24479,7 +25388,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -24521,7 +25430,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -24572,7 +25481,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -24613,7 +25522,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" }, "put": { "tags": [ @@ -24721,7 +25630,7 @@ } } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" }, "delete": { "tags": [ @@ -24781,7 +25690,7 @@ } } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -24838,7 +25747,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "delete": { "tags": [ @@ -24889,7 +25798,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -24961,6 +25870,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -24968,6 +25878,9 @@ "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/_evaluate": { @@ -25070,6 +25983,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -25077,6 +25991,9 @@ "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/analytics/_explain": { @@ -25095,6 +26012,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -25102,6 +26020,9 @@ "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -25118,6 +26039,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -25125,6 +26047,9 @@ "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/analytics/{id}/_explain": { @@ -25148,6 +26073,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -25155,6 +26081,9 @@ "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -25176,6 +26105,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -25183,6 +26113,9 @@ "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -25308,7 +26241,7 @@ } }, "deprecated": true, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets/{timestamp}": { @@ -25362,7 +26295,7 @@ "$ref": "#/components/responses/ml.get_buckets-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -25414,7 +26347,7 @@ "$ref": "#/components/responses/ml.get_buckets-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets": { @@ -25465,7 +26398,7 @@ "$ref": "#/components/responses/ml.get_buckets-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -25514,7 +26447,7 @@ "$ref": "#/components/responses/ml.get_buckets-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -25614,7 +26547,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -25680,7 +26613,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars": { @@ -25706,7 +26639,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -25730,7 +26663,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories/{category_id}": { @@ -25765,7 +26698,7 @@ "$ref": "#/components/responses/ml.get_categories-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -25798,7 +26731,7 @@ "$ref": "#/components/responses/ml.get_categories-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories": { @@ -25830,7 +26763,7 @@ "$ref": "#/components/responses/ml.get_categories-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -25860,7 +26793,7 @@ "$ref": "#/components/responses/ml.get_categories-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/data_frame/analytics": { @@ -25890,7 +26823,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -25919,7 +26852,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -25951,7 +26884,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -25975,7 +26908,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -25996,7 +26929,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/datafeeds": { @@ -26020,7 +26953,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/filters": { @@ -26044,7 +26977,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/influencers": { @@ -26092,7 +27025,7 @@ "$ref": "#/components/responses/ml.get_influencers-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -26138,7 +27071,7 @@ "$ref": "#/components/responses/ml.get_influencers-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -26158,7 +27091,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -26181,7 +27114,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors": { @@ -26205,7 +27138,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/memory/_stats": { @@ -26229,7 +27162,7 @@ "$ref": "#/components/responses/ml.get_memory_stats-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" } }, "/_ml/memory/{node_id}/_stats": { @@ -26256,7 +27189,7 @@ "$ref": "#/components/responses/ml.get_memory_stats-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade/_stats": { @@ -26327,7 +27260,7 @@ } } }, - "x-state": "Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots": { @@ -26368,7 +27301,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -26407,7 +27340,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -26452,7 +27385,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" }, "post": { "tags": [ @@ -26495,7 +27428,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" } }, "/_ml/anomaly_detectors/{job_id}/results/records": { @@ -26543,7 +27476,7 @@ "$ref": "#/components/responses/ml.get_records-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -26589,7 +27522,7 @@ "$ref": "#/components/responses/ml.get_records-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models": { @@ -26627,7 +27560,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -26657,7 +27590,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/_stats": { @@ -26684,7 +27617,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -26768,7 +27701,7 @@ } } }, - "x-state": "Added in 8.3.0" + "x-state": "Generally available; Added in 8.3.0" } }, "/_ml/info": { @@ -26811,7 +27744,7 @@ } } }, - "x-state": "Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -26895,7 +27828,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_data": { @@ -27035,7 +27968,7 @@ } }, "deprecated": true, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -27054,7 +27987,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "post": { "tags": [ @@ -27071,7 +28004,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -27095,7 +28028,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "post": { "tags": [ @@ -27117,7 +28050,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -27147,7 +28080,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -27175,7 +28108,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -27202,7 +28135,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -27227,7 +28160,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -27302,7 +28235,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -27374,7 +28307,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -27430,7 +28363,7 @@ } } }, - "x-state": "Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_revert": { @@ -27510,7 +28443,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/set_upgrade_mode": { @@ -27555,7 +28488,7 @@ } } }, - "x-state": "Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -27613,7 +28546,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -27712,7 +28645,7 @@ } } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -27850,7 +28783,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -27924,7 +28857,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -28020,7 +28953,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -28083,7 +29016,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -28195,7 +29128,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -28401,7 +29334,7 @@ } } }, - "x-state": "Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -28486,7 +29419,7 @@ } } }, - "x-state": "Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -28684,7 +29617,7 @@ } } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_update": { @@ -28763,7 +29696,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -28834,8 +29767,7 @@ } } }, - "x-beta": true, - "x-state": "Added in 8.6.0" + "x-state": "Generally available; Added in 8.6.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade": { @@ -28915,7 +29847,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_msearch": { @@ -28975,7 +29907,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -29033,7 +29965,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_msearch": { @@ -29096,7 +30028,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -29157,7 +30089,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_msearch/template": { @@ -29196,6 +30128,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -29203,6 +30136,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -29239,6 +30175,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -29246,6 +30183,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_msearch/template": { @@ -29287,6 +30227,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -29294,6 +30235,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -29333,6 +30277,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -29340,6 +30285,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mtermvectors": { @@ -29396,12 +30344,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -29456,12 +30408,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mtermvectors": { @@ -29521,12 +30477,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -29584,12 +30544,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/_repositories_metering/{max_archive_version}": { @@ -29636,7 +30600,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" } }, "/_nodes/{node_id}/_repositories_metering": { @@ -29672,7 +30636,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.16.0" } }, "/_nodes/hot_threads": { @@ -29710,7 +30674,8 @@ "200": { "$ref": "#/components/responses/nodes.hot_threads-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/{node_id}/hot_threads": { @@ -29751,7 +30716,8 @@ "200": { "$ref": "#/components/responses/nodes.hot_threads-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes": { @@ -29775,7 +30741,7 @@ "$ref": "#/components/responses/nodes.info-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_nodes/{node_id}": { @@ -29802,7 +30768,7 @@ "$ref": "#/components/responses/nodes.info-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_nodes/{metric}": { @@ -29829,7 +30795,7 @@ "$ref": "#/components/responses/nodes.info-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_nodes/{node_id}/{metric}": { @@ -29859,7 +30825,7 @@ "$ref": "#/components/responses/nodes.info-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_nodes/reload_secure_settings": { @@ -29883,6 +30849,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -29890,6 +30857,9 @@ "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/reload_secure_settings": { @@ -29916,6 +30886,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -29923,6 +30894,9 @@ "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/stats": { @@ -29966,7 +30940,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/{node_id}/stats": { @@ -30013,7 +30988,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/stats/{metric}": { @@ -30060,7 +31036,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/{node_id}/stats/{metric}": { @@ -30110,7 +31087,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/stats/{metric}/{index_metric}": { @@ -30160,7 +31138,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/{node_id}/stats/{metric}/{index_metric}": { @@ -30213,7 +31192,8 @@ "200": { "$ref": "#/components/responses/nodes.stats-200" } - } + }, + "x-state": "Generally available" } }, "/_nodes/usage": { @@ -30233,7 +31213,7 @@ "$ref": "#/components/responses/nodes.usage-200" } }, - "x-state": "Added in 6.0.0" + "x-state": "Generally available; Added in 6.0.0" } }, "/_nodes/{node_id}/usage": { @@ -30256,7 +31236,7 @@ "$ref": "#/components/responses/nodes.usage-200" } }, - "x-state": "Added in 6.0.0" + "x-state": "Generally available; Added in 6.0.0" } }, "/_nodes/usage/{metric}": { @@ -30279,7 +31259,7 @@ "$ref": "#/components/responses/nodes.usage-200" } }, - "x-state": "Added in 6.0.0" + "x-state": "Generally available; Added in 6.0.0" } }, "/_nodes/{node_id}/usage/{metric}": { @@ -30305,7 +31285,7 @@ "$ref": "#/components/responses/nodes.usage-200" } }, - "x-state": "Added in 6.0.0" + "x-state": "Generally available; Added in 6.0.0" } }, "/{index}/_pit": { @@ -30444,6 +31424,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -30451,6 +31432,9 @@ "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/{id}/{context}": { @@ -30489,12 +31473,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -30531,12 +31519,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -30592,6 +31584,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -30599,6 +31592,9 @@ "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -30697,6 +31693,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -30704,6 +31701,9 @@ "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -30748,7 +31748,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -30790,6 +31790,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -30797,6 +31798,9 @@ "source": "GET _query_rules/my-ruleset/\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -30875,6 +31879,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -30882,6 +31887,9 @@ "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -30915,7 +31923,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" } }, "/_query_rules": { @@ -30981,6 +31989,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -30988,6 +31997,9 @@ "source": "GET _query_rules/?from=0&size=3\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_test": { @@ -31072,6 +32084,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -31079,6 +32092,9 @@ "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rank_eval": { @@ -31111,7 +32127,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -31142,7 +32158,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/{index}/_rank_eval": { @@ -31178,7 +32194,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -31212,7 +32228,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_reindex": { @@ -31482,6 +32498,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 2.3.0", "x-codeSamples": [ { @@ -31489,6 +32506,9 @@ "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_reindex/{task_id}/_rethrottle": { @@ -31545,7 +32565,7 @@ } } }, - "x-state": "Added in 2.4.0" + "x-state": "Generally available; Added in 2.4.0" } }, "/_render/template": { @@ -31564,12 +32584,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -31586,12 +32610,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_render/template/{id}": { @@ -31615,12 +32643,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -31642,12 +32674,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}": { @@ -31669,6 +32705,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31676,6 +32713,9 @@ "source": "GET _rollup/job/sensor\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -31771,6 +32811,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31778,6 +32819,9 @@ "source": "PUT _rollup/job/sensor\n{\n \"index_pattern\": \"sensor-*\",\n \"rollup_index\": \"sensor_rollup\",\n \"cron\": \"*/30 * * * * ?\",\n \"page_size\": 1000,\n \"groups\": {\n \"date_histogram\": {\n \"field\": \"timestamp\",\n \"fixed_interval\": \"1h\",\n \"delay\": \"7d\"\n },\n \"terms\": {\n \"fields\": [ \"node\" ]\n }\n },\n \"metrics\": [\n {\n \"field\": \"temperature\",\n \"metrics\": [ \"min\", \"max\", \"sum\" ]\n },\n {\n \"field\": \"voltage\",\n \"metrics\": [ \"avg\" ]\n }\n ]\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -31832,6 +32876,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31839,6 +32884,9 @@ "source": "DELETE _rollup/job/sensor\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job": { @@ -31855,6 +32903,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31862,6 +32911,9 @@ "source": "GET _rollup/job/sensor\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/data/{id}": { @@ -31883,6 +32935,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31890,6 +32943,9 @@ "source": "GET _rollup/data/sensor-*\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/data": { @@ -31906,6 +32962,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31913,6 +32970,9 @@ "source": "GET _rollup/data/sensor-*\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_rollup/data": { @@ -31958,6 +33018,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -31965,6 +33026,9 @@ "source": "GET /sensor_rollup/_rollup/data\n" } ] +======= + "x-state": "Technical preview; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_rollup_search": { @@ -31995,6 +33059,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -32002,6 +33067,9 @@ "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32030,6 +33098,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -32037,6 +33106,9 @@ "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}/_start": { @@ -32087,6 +33159,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -32094,6 +33167,9 @@ "source": "POST _rollup/job/sensor/_start\n" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}/_stop": { @@ -32158,7 +33234,7 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 6.3.0" } }, "/_scripts/painless/_execute": { @@ -32177,6 +33253,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -32184,6 +33261,9 @@ "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32200,6 +33280,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -32207,6 +33288,9 @@ "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search": { @@ -32359,12 +33443,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32515,12 +33603,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search": { @@ -32676,12 +33768,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32835,12 +33931,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}": { @@ -32881,6 +33981,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -32888,6 +33989,9 @@ "source": "GET _application/search_application/my-app/\n" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -32954,6 +34058,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -32961,6 +34066,9 @@ "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -32994,7 +34102,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.8.0" } }, "/_application/analytics/{name}": { @@ -33015,6 +34123,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -33022,6 +34131,9 @@ "source": "GET _application/analytics/my*\n" } ] +======= + "x-state": "Technical preview; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -33055,7 +34167,7 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.8.0" }, "delete": { "tags": [ @@ -33090,7 +34202,7 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.8.0" } }, "/_application/analytics": { @@ -33106,6 +34218,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -33113,6 +34226,9 @@ "source": "GET _application/analytics/my*\n" } ] +======= + "x-state": "Technical preview; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application": { @@ -33188,6 +34304,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -33195,6 +34312,9 @@ "source": "GET _application/search_application?from=0&size=3&q=app*\n" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/analytics/{collection_name}/event/{event_type}": { @@ -33352,6 +34472,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -33359,6 +34480,9 @@ "source": "POST _application/search_application/my-app/_render_query\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\n \"name\": \"title\",\n \"boost\": 5\n },\n {\n \"name\": \"description\",\n \"boost\": 1\n }\n ]\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 8.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}/_search": { @@ -33385,6 +34509,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -33392,6 +34517,9 @@ "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33416,6 +34544,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -33423,6 +34552,9 @@ "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -33482,6 +34614,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -33489,6 +34622,9 @@ "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33546,6 +34682,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -33553,6 +34690,9 @@ "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search_shards": { @@ -33591,12 +34731,16 @@ "$ref": "#/components/responses/search_shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search_shards\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33633,12 +34777,16 @@ "$ref": "#/components/responses/search_shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search_shards\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search_shards": { @@ -33680,12 +34828,16 @@ "$ref": "#/components/responses/search_shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search_shards\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33725,12 +34877,16 @@ "$ref": "#/components/responses/search_shards-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search_shards\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/template": { @@ -33792,6 +34948,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -33799,6 +34956,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33858,6 +35018,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -33865,6 +35026,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search/template": { @@ -33929,6 +35093,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -33936,6 +35101,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33998,6 +35166,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -34005,6 +35174,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/cache/stats": { @@ -34028,6 +35200,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -34035,6 +35208,9 @@ "source": "GET /_searchable_snapshots/cache/stats\n" } ] +======= + "x-state": "Technical preview; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/{node_id}/cache/stats": { @@ -34061,6 +35237,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -34068,6 +35245,9 @@ "source": "GET /_searchable_snapshots/cache/stats\n" } ] +======= + "x-state": "Technical preview; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/cache/clear": { @@ -34097,7 +35277,7 @@ "$ref": "#/components/responses/searchable_snapshots.clear_cache-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.10.0" } }, "/{index}/_searchable_snapshots/cache/clear": { @@ -34130,7 +35310,7 @@ "$ref": "#/components/responses/searchable_snapshots.clear_cache-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 7.10.0" } }, "/_snapshot/{repository}/{snapshot}/_mount": { @@ -34256,6 +35436,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -34263,6 +35444,9 @@ "source": "POST /_snapshot/my_repository/my_snapshot/_mount?wait_for_completion=true\n{\n \"index\": \"my_docs\",\n \"renamed_index\": \"docs\",\n \"index_settings\": {\n \"index.number_of_replicas\": 0\n },\n \"ignore_index_settings\": [ \"index.refresh_interval\" ]\n}" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/stats": { @@ -34282,7 +35466,7 @@ "$ref": "#/components/responses/searchable_snapshots.stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/{index}/_searchable_snapshots/stats": { @@ -34305,7 +35489,7 @@ "$ref": "#/components/responses/searchable_snapshots.stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_security/profile/_activate": { @@ -34370,6 +35554,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -34377,6 +35562,9 @@ "source": "POST /_security/profile/_activate\n{\n \"grant_type\": \"password\",\n \"username\" : \"jacknich\",\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_authenticate": { @@ -34468,6 +35656,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -34475,6 +35664,9 @@ "source": "GET /_security/_authenticate\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role": { @@ -34490,12 +35682,16 @@ "$ref": "#/components/responses/security.get_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34605,6 +35801,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -34612,6 +35809,9 @@ "source": "POST /_security/role\n{\n \"roles\": {\n \"my_admin_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\",\n \"index2\"\n ],\n \"privileges\": [\n \"all\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n },\n \"my_user_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\"\n ],\n \"privileges\": [\n \"read\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -34709,6 +35909,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -34716,6 +35917,9 @@ "source": "DELETE /_security/role\n{\n \"names\": [\"my_admin_role\", \"my_user_role\"]\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/_bulk_update": { @@ -34817,7 +36021,7 @@ } } }, - "x-state": "Added in 8.5.0" + "x-state": "Generally available; Added in 8.5.0" } }, "/_security/user/{username}/_password": { @@ -34844,12 +36048,16 @@ "$ref": "#/components/responses/security.change_password-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34874,12 +36082,16 @@ "$ref": "#/components/responses/security.change_password-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_password": { @@ -34903,12 +36115,16 @@ "$ref": "#/components/responses/security.change_password-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34930,12 +36146,16 @@ "$ref": "#/components/responses/security.change_password-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/{ids}/_clear_cache": { @@ -34990,7 +36210,7 @@ } } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_security/privilege/{application}/_clear_cache": { @@ -35045,7 +36265,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_security/realm/{realms}/_clear_cache": { @@ -35115,7 +36335,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_security/role/{name}/_clear_cache": { @@ -35169,7 +36390,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_security/service/{namespace}/{service}/credential/token/{name}/_clear_cache": { @@ -35248,7 +36470,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_security/api_key": { @@ -35376,6 +36599,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -35383,6 +36607,9 @@ "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -35407,6 +36634,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -35414,6 +36642,9 @@ "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -35438,6 +36669,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -35445,6 +36677,9 @@ "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -35571,6 +36806,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -35578,6 +36814,9 @@ "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/cross_cluster/api_key": { @@ -35668,12 +36907,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/cross_cluster/api_key\n{\n \"name\": \"my-cross-cluster-api-key\",\n \"expiration\": \"1d\", \n \"access\": {\n \"search\": [ \n {\n \"names\": [\"logs*\"]\n }\n ],\n \"replication\": [ \n {\n \"names\": [\"archive*\"]\n }\n ]\n },\n \"metadata\": {\n \"description\": \"phase one\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential/token/{name}": { @@ -35706,12 +36949,16 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -35742,12 +36989,16 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -35831,6 +37082,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -35838,6 +37090,9 @@ "source": "DELETE /_security/service/elastic/fleet-server/credential/token/token42\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential/token": { @@ -35867,12 +37122,16 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/delegate_pki": { @@ -35954,7 +37213,7 @@ } } }, - "x-state": "Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0" } }, "/_security/privilege/{application}/{name}": { @@ -35981,6 +37240,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -35988,6 +37248,9 @@ "source": "GET /_security/privilege/myapp/read\n" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -36057,6 +37320,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -36064,6 +37328,9 @@ "source": "DELETE /_security/privilege/myapp/read\n" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role/{name}": { @@ -36084,12 +37351,16 @@ "$ref": "#/components/responses/security.get_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -36117,12 +37388,16 @@ "$ref": "#/components/responses/security.put_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36150,12 +37425,16 @@ "$ref": "#/components/responses/security.put_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -36214,12 +37493,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role_mapping/{name}": { @@ -36243,6 +37526,7 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -36250,6 +37534,9 @@ "source": "GET /_security/role_mapping/mapping1\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -36277,6 +37564,7 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -36284,6 +37572,9 @@ "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36311,6 +37602,7 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -36318,6 +37610,9 @@ "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -36379,6 +37674,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -36386,6 +37682,9 @@ "source": "DELETE /_security/role_mapping/mapping1\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{username}": { @@ -36409,12 +37708,16 @@ "$ref": "#/components/responses/security.get_user-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/user/jacknich?with_profile_uid=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -36439,12 +37742,16 @@ "$ref": "#/components/responses/security.put_user-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36469,12 +37776,16 @@ "$ref": "#/components/responses/security.put_user-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -36533,12 +37844,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_security/user/jacknich\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{username}/_disable": { @@ -36561,7 +37876,8 @@ "200": { "$ref": "#/components/responses/security.disable_user-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -36582,7 +37898,8 @@ "200": { "$ref": "#/components/responses/security.disable_user-200" } - } + }, + "x-state": "Generally available" } }, "/_security/profile/{uid}/_disable": { @@ -36606,7 +37923,7 @@ "$ref": "#/components/responses/security.disable_user_profile-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" }, "post": { "tags": [ @@ -36628,7 +37945,7 @@ "$ref": "#/components/responses/security.disable_user_profile-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" } }, "/_security/user/{username}/_enable": { @@ -36651,7 +37968,8 @@ "200": { "$ref": "#/components/responses/security.enable_user-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -36672,7 +37990,8 @@ "200": { "$ref": "#/components/responses/security.enable_user-200" } - } + }, + "x-state": "Generally available" } }, "/_security/profile/{uid}/_enable": { @@ -36696,7 +38015,7 @@ "$ref": "#/components/responses/security.enable_user_profile-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" }, "post": { "tags": [ @@ -36718,7 +38037,7 @@ "$ref": "#/components/responses/security.enable_user_profile-200" } }, - "x-state": "Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0" } }, "/_security/enroll/kibana": { @@ -36760,6 +38079,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.0.0", "x-codeSamples": [ { @@ -36767,6 +38087,9 @@ "source": "GET /_security/enroll/kibana\n" } ] +======= + "x-state": "Generally available; Added in 8.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/enroll/node": { @@ -36832,7 +38155,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_security/privilege/_builtin": { @@ -36892,6 +38215,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -36899,6 +38223,9 @@ "source": "GET /_security/privilege/_builtin\n" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege": { @@ -36917,6 +38244,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -36924,6 +38252,9 @@ "source": "GET /_security/privilege/myapp/read\n" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -36948,6 +38279,7 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -36955,6 +38287,9 @@ "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36979,6 +38314,7 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -36986,6 +38322,9 @@ "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege/{application}": { @@ -37009,6 +38348,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -37016,6 +38356,9 @@ "source": "GET /_security/privilege/myapp/read\n" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role_mapping": { @@ -37034,6 +38377,7 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -37041,6 +38385,9 @@ "source": "GET /_security/role_mapping/mapping1\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}": { @@ -37067,6 +38414,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -37074,6 +38422,9 @@ "source": "GET /_security/service/elastic/fleet-server\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}": { @@ -37097,6 +38448,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -37104,6 +38456,9 @@ "source": "GET /_security/service/elastic/fleet-server\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service": { @@ -37122,6 +38477,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -37129,6 +38485,9 @@ "source": "GET /_security/service/elastic/fleet-server\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential": { @@ -37207,6 +38566,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -37214,6 +38574,9 @@ "source": "GET /_security/service/elastic/fleet-server/credential\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/settings": { @@ -37263,7 +38626,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -37341,12 +38705,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /_security/settings\n{\n \"security\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-tokens\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-profile\": {\n \"index.auto_expand_replicas\": \"0-all\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oauth2/token": { @@ -37458,6 +38826,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -37465,6 +38834,9 @@ "source": "POST /_security/oauth2/token\n{\n \"grant_type\" : \"client_credentials\"\n}" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37570,6 +38942,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -37577,6 +38950,9 @@ "source": "DELETE /_security/oauth2/token\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\"\n}" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user": { @@ -37597,12 +38973,16 @@ "$ref": "#/components/responses/security.get_user-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/user/jacknich?with_profile_uid=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_privileges": { @@ -37721,6 +39101,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.5.0", "x-codeSamples": [ { @@ -37728,6 +39109,9 @@ "source": "GET /_security/user/_privileges\n" } ] +======= + "x-state": "Generally available; Added in 6.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/{uid}": { @@ -37825,6 +39209,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -37832,6 +39217,9 @@ "source": "GET /_security/profile/u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\n" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/grant": { @@ -37924,6 +39312,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -37931,6 +39320,9 @@ "source": "POST /_security/api_key/grant\n{\n \"grant_type\": \"password\",\n \"username\" : \"test_admin\",\n \"password\" : \"x-pack-test-password\",\n \"api_key\" : {\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\",\n \"role_descriptors\": {\n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_has_privileges": { @@ -37952,6 +39344,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -37959,6 +39352,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -37978,6 +39374,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -37985,6 +39382,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{user}/_has_privileges": { @@ -38011,6 +39411,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -38018,6 +39419,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38042,6 +39446,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -38049,6 +39454,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/_has_privileges": { @@ -38070,6 +39478,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.3.0", "x-codeSamples": [ { @@ -38077,6 +39486,9 @@ "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38096,6 +39508,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.3.0", "x-codeSamples": [ { @@ -38103,6 +39516,9 @@ "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/authenticate": { @@ -38194,12 +39610,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/oidc/authenticate\n{\n \"redirect_uri\" : \"https://oidc-kibana.elastic.co:5603/api/security/oidc/callback?code=jtI3Ntt8v3_XvcLzCFGq&state=4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"state\" : \"4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"nonce\" : \"WaBPH0KqPVdG5HHdSxPRjfoZbXMCicm5v1OiAj0DUFM\",\n \"realm\" : \"oidc1\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/logout": { @@ -38266,12 +39686,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/oidc/logout\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\",\n \"refresh_token\": \"vLBPvmAB6KvwvJZr27cS\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/prepare": { @@ -38370,12 +39794,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/oidc/prepare\n{\n \"realm\" : \"oidc1\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/api_key": { @@ -38405,6 +39833,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -38412,6 +39841,9 @@ "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38439,6 +39871,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -38446,6 +39879,9 @@ "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/role": { @@ -38464,6 +39900,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -38471,6 +39908,9 @@ "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38487,6 +39927,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -38494,6 +39935,9 @@ "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/user": { @@ -38517,6 +39961,7 @@ "$ref": "#/components/responses/security.query_user-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -38524,6 +39969,9 @@ "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38545,6 +39993,7 @@ "$ref": "#/components/responses/security.query_user-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -38552,6 +40001,9 @@ "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/authenticate": { @@ -38645,6 +40097,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -38652,6 +40105,9 @@ "source": "POST /_security/saml/authenticate\n{\n \"content\" : \"PHNhbWxwOlJlc3BvbnNlIHhtbG5zOnNhbWxwPSJ1cm46b2FzaXM6bmFtZXM6dGM6U0FNTDoyLjA6cHJvdG9jb2wiIHhtbG5zOnNhbWw9InVybjpvYXNpczpuYW1lczp0YzpTQU1MOjIuMD.....\",\n \"ids\" : [\"4fee3b046395c4e751011e97f8900b5273d56685\"]\n}" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/complete_logout": { @@ -38716,6 +40172,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -38723,6 +40180,9 @@ "source": "POST /_security/saml/complete_logout\n{\n \"realm\": \"saml1\",\n \"ids\": [ \"_1c368075e0b3...\" ],\n \"query_string\": \"SAMLResponse=fZHLasMwEEVbfb1bf...&SigAlg=http%3A%2F%2Fwww.w3.org%2F2000%2F09%2Fxmldsig%23rsa-sha1&Signature=CuCmFn%2BLqnaZGZJqK...\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/invalidate": { @@ -38806,6 +40266,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -38813,6 +40274,9 @@ "source": "POST /_security/saml/invalidate\n{\n \"query_string\" : \"SAMLRequest=nZFda4MwFIb%2FiuS%2BmviRpqFaClKQdbvo2g12M2KMraCJ9cRR9utnW4Wyi13sMie873MeznJ1aWrnS3VQGR0j4mLkKC1NUeljjA77zYyhVbIE0dR%2By7fmaHq7U%2BdegXWGpAZ%2B%2F4pR32luBFTAtWgUcCv56%2Fp5y30X87Yz1khTIycdgpUW9kY7WdsC9zxoXTvMvWuVV98YyMnSGH2SYE5pwALBIr9QKiwDGpW0oGVUznGeMyJZKFkQ4jBf5HnhUymjIhzCAL3KNFihbYx8TBYzzGaY7EnIyZwHzCWMfiDnbRIftkSjJr%2BFu0e9v%2B0EgOquRiiZjKpiVFp6j50T4WXoyNJ%2FEWC9fdqc1t%2F1%2B2F3aUpjzhPiXpqMz1%2FHSn4A&SigAlg=http%3A%2F%2Fwww.w3.org%2F2001%2F04%2Fxmldsig-more%23rsa-sha256&Signature=MsAYz2NFdovMG2mXf6TSpu5vlQQyEJAg%2B4KCwBqJTmrb3yGXKUtIgvjqf88eCAK32v3eN8vupjPC8LglYmke1ZnjK0%2FKxzkvSjTVA7mMQe2AQdKbkyC038zzRq%2FYHcjFDE%2Bz0qISwSHZY2NyLePmwU7SexEXnIz37jKC6NMEhus%3D\",\n \"realm\" : \"saml1\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/logout": { @@ -38882,6 +40346,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -38889,6 +40354,9 @@ "source": "POST /_security/saml/logout\n{\n \"token\" : \"46ToAxZVaXVVZTVKOVF5YU04ZFJVUDVSZlV3\",\n \"refresh_token\" : \"mJdXLtmvTUSpoLwMvdBt_w\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/prepare": { @@ -38974,6 +40442,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -38981,6 +40450,9 @@ "source": "POST /_security/saml/prepare\n{\n \"realm\" : \"saml1\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/metadata/{realm_name}": { @@ -39031,6 +40503,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -39038,6 +40511,9 @@ "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/_suggest": { @@ -39061,6 +40537,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -39068,6 +40545,9 @@ "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39089,6 +40569,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -39096,6 +40577,9 @@ "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/{id}": { @@ -39183,6 +40667,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.4.0", "x-codeSamples": [ { @@ -39190,6 +40675,9 @@ "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/cross_cluster/api_key/{id}": { @@ -39273,12 +40761,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /_security/cross_cluster/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"access\": {\n \"replication\": [\n {\n \"names\": [\"archive\"]\n }\n ]\n },\n \"metadata\": {\n \"application\": \"replication\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/{uid}/_data": { @@ -39311,6 +40803,7 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -39318,6 +40811,9 @@ "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39348,6 +40844,7 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.2.0", "x-codeSamples": [ { @@ -39355,6 +40852,9 @@ "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/shutdown": { @@ -39378,6 +40878,7 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -39385,6 +40886,9 @@ "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -39475,6 +40979,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -39482,6 +40987,9 @@ "source": "PUT /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n{\n \"type\": \"restart\",\n \"reason\": \"Demonstrating how the node shutdown API works\",\n \"allocation_delay\": \"20m\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -39541,6 +41049,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -39548,6 +41057,9 @@ "source": "DELETE /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/shutdown": { @@ -39568,6 +41080,7 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -39575,6 +41088,9 @@ "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/_simulate": { @@ -39598,6 +41114,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -39605,6 +41122,9 @@ "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39626,6 +41146,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -39633,6 +41154,9 @@ "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/{index}/_simulate": { @@ -39659,6 +41183,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -39666,6 +41191,9 @@ "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39690,6 +41218,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -39697,6 +41226,9 @@ "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/policy/{policy_id}": { @@ -39723,6 +41255,7 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -39730,6 +41263,9 @@ "source": "GET _slm/policy/daily-snapshots?human\n" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -39822,6 +41358,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -39829,6 +41366,9 @@ "source": "PUT /_slm/policy/daily-snapshots\n{\n \"schedule\": \"0 30 1 * * ?\",\n \"name\": \"\",\n \"repository\": \"my_repository\",\n \"config\": {\n \"indices\": [\"data-*\", \"important\"],\n \"ignore_unavailable\": false,\n \"include_global_state\": false\n },\n \"retention\": {\n \"expire_after\": \"30d\",\n \"min_count\": 5,\n \"max_count\": 50\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -39882,7 +41422,7 @@ } } }, - "x-state": "Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0" } }, "/_slm/policy/{policy_id}/_execute": { @@ -39952,6 +41492,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -39959,6 +41500,9 @@ "source": "POST /_slm/policy/daily-snapshots/_execute\n" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/_execute_retention": { @@ -40003,7 +41547,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_slm/policy": { @@ -40027,6 +41571,7 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -40034,6 +41579,9 @@ "source": "GET _slm/policy/daily-snapshots?human\n" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/stats": { @@ -40131,6 +41679,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.5.0", "x-codeSamples": [ { @@ -40138,6 +41687,9 @@ "source": "GET /_slm/stats\n" } ] +======= + "x-state": "Generally available; Added in 7.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/status": { @@ -40195,6 +41747,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.6.0", "x-codeSamples": [ { @@ -40202,6 +41755,9 @@ "source": "GET _slm/status\n" } ] +======= + "x-state": "Generally available; Added in 7.6.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/start": { @@ -40252,6 +41808,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.6.0", "x-codeSamples": [ { @@ -40259,6 +41816,9 @@ "source": "POST _slm/start\n" } ] +======= + "x-state": "Generally available; Added in 7.6.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/stop": { @@ -40303,7 +41863,7 @@ } } }, - "x-state": "Added in 7.6.0" + "x-state": "Generally available; Added in 7.6.0" } }, "/_snapshot/{repository}/_cleanup": { @@ -40376,6 +41936,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.4.0", "x-codeSamples": [ { @@ -40383,6 +41944,9 @@ "source": "POST /_snapshot/my_repository/_cleanup\n" } ] +======= + "x-state": "Generally available; Added in 7.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}": { @@ -40475,6 +42039,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -40482,6 +42047,9 @@ "source": "PUT /_snapshot/my_repository/source_snapshot/_clone/target_snapshot\n{\n \"indices\": \"index_a,index_b\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}": { @@ -40694,6 +42262,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40701,6 +42270,9 @@ "source": "GET /_snapshot/my_repository/snapshot_*?sort=start_time&from_sort_value=1577833200000\n" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -40734,6 +42306,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40741,6 +42314,9 @@ "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -40774,6 +42350,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40781,6 +42358,9 @@ "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -40840,12 +42420,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_snapshot/my_repository/snapshot_2,snapshot_3\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}": { @@ -40871,6 +42455,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40878,6 +42463,9 @@ "source": "GET /_snapshot/my_repository\n" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -40911,6 +42499,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40918,6 +42507,9 @@ "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -40951,6 +42543,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -40958,6 +42551,9 @@ "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -41011,7 +42607,7 @@ } } }, - "x-state": "Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0" } }, "/_snapshot": { @@ -41034,6 +42630,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -41041,6 +42638,9 @@ "source": "GET /_snapshot/my_repository\n" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_analyze": { @@ -41294,6 +42894,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -41301,6 +42902,9 @@ "source": "POST /_snapshot/my_repository/_analyze?blob_count=10&max_blob_size=1mb&timeout=120s\n" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_verify_integrity": { @@ -41416,7 +43020,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.16.0" } }, "/_snapshot/{repository}/{snapshot}/_restore": { @@ -41567,6 +43171,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 0.0.0", "x-codeSamples": [ { @@ -41574,6 +43179,9 @@ "source": "POST /_snapshot/my_repository/snapshot_2/_restore?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"rename_pattern\": \"index_(.+)\",\n \"rename_replacement\": \"restored_index_$1\",\n \"include_aliases\": false\n}" } ] +======= + "x-state": "Generally available; Added in 0.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/_status": { @@ -41597,6 +43205,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -41604,6 +43213,9 @@ "source": "GET _snapshot/my_repository/snapshot_2/_status\n" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_status": { @@ -41630,6 +43242,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -41637,6 +43250,9 @@ "source": "GET _snapshot/my_repository/snapshot_2/_status\n" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}/_status": { @@ -41666,6 +43282,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -41673,6 +43290,9 @@ "source": "GET _snapshot/my_repository/snapshot_2/_status\n" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_verify": { @@ -41743,7 +43363,7 @@ } } }, - "x-state": "Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0" } }, "/_sql/close": { @@ -41798,6 +43418,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -41805,6 +43426,9 @@ "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/async/delete/{id}": { @@ -41840,7 +43464,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql/async/{id}": { @@ -41953,7 +43577,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql/async/status/{id}": { @@ -42019,7 +43643,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql": { @@ -42043,6 +43667,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -42050,6 +43675,9 @@ "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -42071,6 +43699,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -42078,6 +43707,9 @@ "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/translate": { @@ -42096,6 +43728,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -42103,6 +43736,9 @@ "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -42119,6 +43755,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -42126,6 +43763,9 @@ "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ssl/certificates": { @@ -42160,6 +43800,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.2.0", "x-codeSamples": [ { @@ -42167,6 +43808,9 @@ "source": "GET /_ssl/certificates\n" } ] +======= + "x-state": "Generally available; Added in 6.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms/{id}": { @@ -42244,6 +43888,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -42251,6 +43896,9 @@ "source": "GET _synonyms/my-synonyms-set\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -42334,7 +43982,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" }, "delete": { "tags": [ @@ -42368,7 +44016,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -42421,6 +44069,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -42428,6 +44077,9 @@ "source": "GET _synonyms/my-synonyms-set/test-1\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -42513,6 +44165,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -42520,6 +44173,9 @@ "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -42580,6 +44236,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -42587,6 +44244,9 @@ "source": "DELETE _synonyms/my-synonyms-set/test-1\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms": { @@ -42654,6 +44314,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -42661,6 +44322,9 @@ "source": "GET _synonyms\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_tasks/_cancel": { @@ -42690,7 +44354,7 @@ "$ref": "#/components/responses/tasks.cancel-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 2.3.0" } }, "/_tasks/{task_id}/_cancel": { @@ -42723,7 +44387,7 @@ "$ref": "#/components/responses/tasks.cancel-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 2.3.0" } }, "/_tasks/{task_id}": { @@ -42809,6 +44473,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -42816,6 +44481,9 @@ "source": "GET _tasks?actions=cluster:*\n" } ] +======= + "x-state": "Technical preview; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_tasks": { @@ -42926,6 +44594,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -42933,6 +44602,9 @@ "source": "GET _tasks?actions=*search&detailed\n" } ] +======= + "x-state": "Technical preview; Added in 2.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_terms_enum": { @@ -42956,6 +44628,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -42963,6 +44636,9 @@ "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -42984,6 +44660,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -42991,6 +44668,9 @@ "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors/{id}": { @@ -43050,12 +44730,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43113,12 +44797,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors": { @@ -43175,12 +44863,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43235,12 +44927,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_field_structure": { @@ -43480,12 +45176,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _text_structure/find_field_structure?index=test-logs&field=message\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_message_structure": { @@ -43539,12 +45239,16 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43596,12 +45300,16 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_structure": { @@ -43907,6 +45615,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.13.0", "x-codeSamples": [ { @@ -43914,6 +45623,9 @@ "source": "POST _text_structure/find_structure\n{\"name\": \"Leviathan Wakes\", \"author\": \"James S.A. Corey\", \"release_date\": \"2011-06-02\", \"page_count\": 561}\n{\"name\": \"Hyperion\", \"author\": \"Dan Simmons\", \"release_date\": \"1989-05-26\", \"page_count\": 482}\n{\"name\": \"Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1965-06-01\", \"page_count\": 604}\n{\"name\": \"Dune Messiah\", \"author\": \"Frank Herbert\", \"release_date\": \"1969-10-15\", \"page_count\": 331}\n{\"name\": \"Children of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1976-04-21\", \"page_count\": 408}\n{\"name\": \"God Emperor of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1981-05-28\", \"page_count\": 454}\n{\"name\": \"Consider Phlebas\", \"author\": \"Iain M. Banks\", \"release_date\": \"1987-04-23\", \"page_count\": 471}\n{\"name\": \"Pandora's Star\", \"author\": \"Peter F. Hamilton\", \"release_date\": \"2004-03-02\", \"page_count\": 768}\n{\"name\": \"Revelation Space\", \"author\": \"Alastair Reynolds\", \"release_date\": \"2000-03-15\", \"page_count\": 585}\n{\"name\": \"A Fire Upon the Deep\", \"author\": \"Vernor Vinge\", \"release_date\": \"1992-06-01\", \"page_count\": 613}\n{\"name\": \"Ender's Game\", \"author\": \"Orson Scott Card\", \"release_date\": \"1985-06-01\", \"page_count\": 324}\n{\"name\": \"1984\", \"author\": \"George Orwell\", \"release_date\": \"1985-06-01\", \"page_count\": 328}\n{\"name\": \"Fahrenheit 451\", \"author\": \"Ray Bradbury\", \"release_date\": \"1953-10-15\", \"page_count\": 227}\n{\"name\": \"Brave New World\", \"author\": \"Aldous Huxley\", \"release_date\": \"1932-06-01\", \"page_count\": 268}\n{\"name\": \"Foundation\", \"author\": \"Isaac Asimov\", \"release_date\": \"1951-06-01\", \"page_count\": 224}\n{\"name\": \"The Giver\", \"author\": \"Lois Lowry\", \"release_date\": \"1993-04-26\", \"page_count\": 208}\n{\"name\": \"Slaughterhouse-Five\", \"author\": \"Kurt Vonnegut\", \"release_date\": \"1969-06-01\", \"page_count\": 275}\n{\"name\": \"The Hitchhiker's Guide to the Galaxy\", \"author\": \"Douglas Adams\", \"release_date\": \"1979-10-12\", \"page_count\": 180}\n{\"name\": \"Snow Crash\", \"author\": \"Neal Stephenson\", \"release_date\": \"1992-06-01\", \"page_count\": 470}\n{\"name\": \"Neuromancer\", \"author\": \"William Gibson\", \"release_date\": \"1984-07-01\", \"page_count\": 271}\n{\"name\": \"The Handmaid's Tale\", \"author\": \"Margaret Atwood\", \"release_date\": \"1985-06-01\", \"page_count\": 311}\n{\"name\": \"Starship Troopers\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1959-12-01\", \"page_count\": 335}\n{\"name\": \"The Left Hand of Darkness\", \"author\": \"Ursula K. Le Guin\", \"release_date\": \"1969-06-01\", \"page_count\": 304}\n{\"name\": \"The Moon is a Harsh Mistress\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1966-04-01\", \"page_count\": 288}" } ] +======= + "x-state": "Generally available; Added in 7.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/test_grok_pattern": { @@ -43940,6 +45652,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -43947,6 +45660,9 @@ "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43971,6 +45687,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -43978,6 +45695,9 @@ "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}": { @@ -44010,7 +45730,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "put": { "tags": [ @@ -44129,6 +45849,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44136,6 +45857,9 @@ "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -44204,7 +45928,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform": { @@ -44234,7 +45958,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -44331,7 +46055,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -44358,6 +46082,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44365,6 +46090,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -44389,6 +46117,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44396,6 +46125,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/_preview": { @@ -44419,6 +46151,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44426,6 +46159,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -44447,6 +46183,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44454,6 +46191,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}/_reset": { @@ -44515,7 +46255,7 @@ } } }, - "x-state": "Added in 8.1.0" + "x-state": "Generally available; Added in 8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -44567,7 +46307,7 @@ } } }, - "x-state": "Added in 8.7.0" + "x-state": "Generally available; Added in 8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -44629,7 +46369,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -44721,7 +46461,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -44888,6 +46628,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -44895,6 +46636,9 @@ "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/_upgrade": { @@ -44964,7 +46708,7 @@ } } }, - "x-state": "Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0" } }, "/{index}/_update/{id}": { @@ -45243,12 +46987,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_update_by_query": { @@ -45711,6 +47459,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 2.4.0", "x-codeSamples": [ { @@ -45718,6 +47467,9 @@ "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_update_by_query/{task_id}/_rethrottle": { @@ -45774,7 +47526,7 @@ } } }, - "x-state": "Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0" } }, "/_watcher/watch/{watch_id}/_ack": { @@ -45795,12 +47547,16 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_ack\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -45819,12 +47575,16 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_ack\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{watch_id}/_ack/{action_id}": { @@ -45848,12 +47608,16 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_ack\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -45875,12 +47639,16 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_ack\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{watch_id}/_activate": { @@ -45903,7 +47671,8 @@ "200": { "$ref": "#/components/responses/watcher.activate_watch-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -45924,7 +47693,8 @@ "200": { "$ref": "#/components/responses/watcher.activate_watch-200" } - } + }, + "x-state": "Generally available" } }, "/_watcher/watch/{watch_id}/_deactivate": { @@ -45947,7 +47717,8 @@ "200": { "$ref": "#/components/responses/watcher.deactivate_watch-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -45968,7 +47739,8 @@ "200": { "$ref": "#/components/responses/watcher.deactivate_watch-200" } - } + }, + "x-state": "Generally available" } }, "/_watcher/watch/{id}": { @@ -46036,6 +47808,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.6.0", "x-codeSamples": [ { @@ -46043,6 +47816,9 @@ "source": "GET _watcher/watch/my_watch\n" } ] +======= + "x-state": "Generally available; Added in 5.6.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -46076,12 +47852,16 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46115,12 +47895,16 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -46176,12 +47960,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE _watcher/watch/my_watch\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{id}/_execute": { @@ -46208,12 +47996,16 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46238,12 +48030,16 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/_execute": { @@ -46267,12 +48063,16 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46294,12 +48094,16 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/settings": { @@ -46347,7 +48151,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -46421,12 +48226,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /_watcher/settings\n{\n \"index.auto_expand_replicas\": \"0-4\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_query/watches": { @@ -46445,6 +48254,7 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -46452,6 +48262,9 @@ "source": "GET /_watcher/_query/watches\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46468,6 +48281,7 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -46475,6 +48289,9 @@ "source": "GET /_watcher/_query/watches\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_start": { @@ -46515,12 +48332,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/_start\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/stats": { @@ -46544,6 +48365,7 @@ "$ref": "#/components/responses/watcher.stats-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -46551,6 +48373,9 @@ "source": "GET _watcher/stats\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/stats/{metric}": { @@ -46577,6 +48402,7 @@ "$ref": "#/components/responses/watcher.stats-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -46584,6 +48410,9 @@ "source": "GET _watcher/stats\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_stop": { @@ -46624,12 +48453,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _watcher/_stop\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_xpack": { @@ -46713,12 +48546,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_xpack\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_xpack/usage": { @@ -46867,12 +48704,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_xpack/usage\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } } }, @@ -57139,7 +58980,7 @@ }, "prune": { "description": "Whether to perform pruning, omitting the non-significant tokens from the query to improve query performance.\nIf prune is true but the pruning_config is not specified, pruning will occur but default values will be used.\nDefault: false", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.15.0", "type": "boolean" }, "pruning_config": { @@ -61253,7 +63094,7 @@ }, "dataset.size": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-state": "Added in 8.11.0", + "x-state": "Generally available; Added in 8.11.0", "oneOf": [ { "type": "string" @@ -63578,7 +65419,7 @@ }, "dataset": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-state": "Added in 8.11.0", + "x-state": "Generally available; Added in 8.11.0", "oneOf": [ { "type": "string" @@ -74097,7 +75938,7 @@ }, "routes": { "description": "Detailed HTTP stats broken down by route", - "x-state": "Added in 8.12.0", + "x-state": "Generally available; Added in 8.12.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/nodes._types.HttpRoute" @@ -74302,12 +76143,12 @@ }, "ingested_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents ingested by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.", - "x-state": "Added in 8.15.0", + "x-state": "Generally available; Added in 8.15.0", "type": "number" }, "produced_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents produced by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.\nIn situations where there are subsequent pipelines, the value represents the size of the document after all pipelines have run.", - "x-state": "Added in 8.15.0", + "x-state": "Generally available; Added in 8.15.0", "type": "number" } }, @@ -78277,7 +80118,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "boolean" }, "time_series_metric": { @@ -78285,7 +80126,7 @@ }, "non_dimension_indices": { "description": "If this list is present in response then some indices have the\nfield marked as a dimension and other indices, the ones in this list, do not.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -78293,7 +80134,7 @@ }, "metric_conflicts_indices": { "description": "The list of indices where this field is present if these indices\ndon’t have the same `time_series_metric` value for this field.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -86580,7 +88421,7 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", - "x-beta": true, + "x-state": "Beta; Added in 8.9.0", "type": "boolean" } }, diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 4fe8ad9cb0..11d829acc7 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -78,6 +78,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -85,6 +86,9 @@ "source": "GET /_async_search/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -118,7 +122,7 @@ } } }, - "x-state": "Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0" } }, "/_async_search/status/{id}": { @@ -181,6 +185,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ { @@ -188,6 +193,9 @@ "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" } ] +======= + "x-state": "Generally available; Added in 7.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_async_search": { @@ -337,6 +345,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -344,6 +353,9 @@ "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_async_search": { @@ -496,6 +508,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -503,6 +516,9 @@ "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_bulk": { @@ -559,12 +575,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -619,12 +639,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_bulk": { @@ -684,12 +708,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -747,12 +775,16 @@ "$ref": "#/components/responses/bulk-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases": { @@ -782,12 +814,16 @@ "$ref": "#/components/responses/cat.aliases-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/aliases?format=json&v=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases/{name}": { @@ -820,12 +856,16 @@ "$ref": "#/components/responses/cat.aliases-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET _cat/aliases?format=json&v=true\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates": { @@ -855,6 +895,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ { @@ -862,6 +903,9 @@ "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates/{name}": { @@ -894,6 +938,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ { @@ -901,6 +946,9 @@ "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" } ] +======= + "x-state": "Generally available; Added in 5.1.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count": { @@ -924,12 +972,16 @@ "$ref": "#/components/responses/cat.count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count/{index}": { @@ -956,12 +1008,16 @@ "$ref": "#/components/responses/cat.count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat": { @@ -983,7 +1039,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_cat/indices": { @@ -1028,12 +1085,16 @@ "$ref": "#/components/responses/cat.indices-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/indices/{index}": { @@ -1081,12 +1142,16 @@ "$ref": "#/components/responses/cat.indices-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics": { @@ -1119,6 +1184,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1126,6 +1192,9 @@ "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1161,6 +1230,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1168,6 +1238,9 @@ "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds": { @@ -1197,6 +1270,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1204,6 +1278,9 @@ "source": "GET _cat/ml/datafeeds?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1236,6 +1313,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1243,6 +1321,9 @@ "source": "GET _cat/ml/datafeeds?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors": { @@ -1275,6 +1356,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1282,6 +1364,9 @@ "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1317,6 +1402,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1324,6 +1410,9 @@ "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models": { @@ -1362,6 +1451,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1369,6 +1459,9 @@ "source": "GET _cat/ml/trained_models?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models/{model_id}": { @@ -1410,6 +1503,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1417,6 +1511,9 @@ "source": "GET _cat/ml/trained_models?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms": { @@ -1452,6 +1549,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1459,6 +1557,9 @@ "source": "GET /_cat/transforms?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms/{transform_id}": { @@ -1497,6 +1598,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -1504,6 +1606,9 @@ "source": "GET /_cat/transforms?v=true&format=json\n" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll": { @@ -1536,12 +1641,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1572,12 +1681,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -1597,12 +1710,16 @@ "$ref": "#/components/responses/clear_scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll/{scroll_id}": { @@ -1638,12 +1755,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1677,12 +1798,16 @@ "$ref": "#/components/responses/scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -1707,12 +1832,16 @@ "$ref": "#/components/responses/clear_scroll-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_pit": { @@ -1778,6 +1907,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -1785,6 +1915,9 @@ "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_component_template/{name}": { @@ -1817,7 +1950,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "put": { "tags": [ @@ -1845,6 +1978,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -1852,6 +1986,9 @@ "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1879,6 +2016,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ { @@ -1886,6 +2024,9 @@ "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -1939,7 +2080,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "head": { "tags": [ @@ -1989,7 +2130,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" } }, "/_component_template": { @@ -2019,7 +2160,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" } }, "/_info/{target}": { @@ -2078,7 +2219,7 @@ } } }, - "x-state": "Added in 8.9.0" + "x-state": "Generally available; Added in 8.9.0" } }, "/_connector/{connector_id}/_check_in": { @@ -2127,7 +2268,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}": { @@ -2173,7 +2314,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "put": { "tags": [ @@ -2194,6 +2335,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -2201,6 +2343,9 @@ "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -2259,7 +2404,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector": { @@ -2369,7 +2514,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "put": { "tags": [ @@ -2385,6 +2530,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -2392,6 +2538,9 @@ "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -2453,7 +2602,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -2497,7 +2646,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -2532,7 +2681,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "delete": { "tags": [ @@ -2571,7 +2720,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/_sync_job": { @@ -2671,7 +2820,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" }, "post": { "tags": [ @@ -2729,6 +2878,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -2736,6 +2886,9 @@ "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -2779,7 +2932,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}/_api_key_id": { @@ -2851,6 +3004,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -2858,6 +3012,9 @@ "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_configuration": { @@ -2935,6 +3092,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -2942,6 +3100,9 @@ "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_error": { @@ -3020,6 +3181,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -3027,6 +3189,9 @@ "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_filtering": { @@ -3110,6 +3275,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3117,6 +3283,9 @@ "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -3178,7 +3347,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.12.0" } }, "/_connector/{connector_id}/_index_name": { @@ -3257,6 +3426,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3264,6 +3434,9 @@ "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_name": { @@ -3334,6 +3507,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3341,6 +3515,9 @@ "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_native": { @@ -3401,7 +3578,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.12.0" } }, "/_connector/{connector_id}/_pipeline": { @@ -3473,6 +3650,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3480,6 +3658,9 @@ "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_scheduling": { @@ -3553,6 +3734,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3560,6 +3742,9 @@ "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_service_type": { @@ -3630,6 +3815,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -3637,6 +3823,9 @@ "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" } ] +======= + "x-state": "Beta; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_status": { @@ -3707,6 +3896,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -3714,6 +3904,9 @@ "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" } ] +======= + "x-state": "Technical preview; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_count": { @@ -3776,12 +3969,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -3842,12 +4039,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_count": { @@ -3913,12 +4114,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -3982,12 +4187,16 @@ "$ref": "#/components/responses/count-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_create/{id}": { @@ -4056,6 +4265,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -4063,6 +4273,9 @@ "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4129,6 +4342,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -4136,6 +4350,9 @@ "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_doc/{id}": { @@ -4299,12 +4516,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET my-index-000001/_doc/0\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -4368,12 +4589,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4437,12 +4662,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4573,12 +4802,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /my-index-000001/_doc/1\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -4718,7 +4951,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/{index}/_delete_by_query": { @@ -5161,6 +5395,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -5168,6 +5403,9 @@ "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/{id}": { @@ -5227,7 +5465,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -5261,12 +5500,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -5300,12 +5543,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -5358,7 +5605,8 @@ } } } - } + }, + "x-state": "Generally available" } }, "/_enrich/policy/{name}": { @@ -5382,7 +5630,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "put": { "tags": [ @@ -5447,7 +5695,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "delete": { "tags": [ @@ -5491,7 +5739,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -5555,7 +5803,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_enrich/policy": { @@ -5576,7 +5824,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_eql/search/{id}": { @@ -5632,7 +5880,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "delete": { "tags": [ @@ -5666,7 +5914,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_eql/search/status/{id}": { @@ -5736,7 +5984,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/{index}/_eql/search": { @@ -5787,6 +6035,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -5794,6 +6043,9 @@ "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -5842,6 +6094,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -5849,6 +6102,9 @@ "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query/queries/{id}": { @@ -5919,7 +6175,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 9.1.0" } }, "/_query/queries": { @@ -5953,7 +6209,7 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 9.1.0" } }, "/_query": { @@ -6235,7 +6491,8 @@ } } } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -6369,7 +6626,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/{index}/_explain/{id}": { @@ -6432,12 +6689,16 @@ "$ref": "#/components/responses/explain-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6498,12 +6759,16 @@ "$ref": "#/components/responses/explain-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_field_caps": { @@ -6548,6 +6813,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -6555,6 +6821,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6597,6 +6866,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -6604,6 +6874,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_field_caps": { @@ -6651,6 +6924,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -6658,6 +6932,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6703,6 +6980,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ { @@ -6710,6 +6988,9 @@ "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_graph/explore": { @@ -6742,12 +7023,16 @@ "$ref": "#/components/responses/graph.explore-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6778,12 +7063,16 @@ "$ref": "#/components/responses/graph.explore-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_doc": { @@ -6846,12 +7135,16 @@ "$ref": "#/components/responses/index-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_block/{block}": { @@ -6973,6 +7266,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -6980,6 +7274,9 @@ "source": "PUT /my-index-000001/_block/write\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_analyze": { @@ -7006,12 +7303,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7036,12 +7337,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_analyze": { @@ -7071,12 +7376,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7104,12 +7413,16 @@ "$ref": "#/components/responses/indices.analyze-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}": { @@ -7227,7 +7540,8 @@ } } } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -7348,12 +7662,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -7436,7 +7754,8 @@ } } } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -7525,7 +7844,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_data_stream/{name}": { @@ -7558,7 +7878,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "put": { "tags": [ @@ -7612,7 +7932,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "delete": { "tags": [ @@ -7666,7 +7986,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/{index}/_alias/{name}": { @@ -7701,7 +8021,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -7732,12 +8053,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7768,12 +8093,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -7800,7 +8129,8 @@ "200": { "$ref": "#/components/responses/indices.delete_alias-200" } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -7833,7 +8163,8 @@ "200": { "$ref": "#/components/responses/indices.exists_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_aliases/{name}": { @@ -7866,12 +8197,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7902,12 +8237,16 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -7934,7 +8273,8 @@ "200": { "$ref": "#/components/responses/indices.delete_alias-200" } - } + }, + "x-state": "Generally available" } }, "/_index_template/{name}": { @@ -7967,7 +8307,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" }, "put": { "tags": [ @@ -7998,6 +8338,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -8005,6 +8346,9 @@ "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8035,6 +8379,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -8042,6 +8387,9 @@ "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8095,7 +8443,7 @@ } } }, - "x-state": "Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0" }, "head": { "tags": [ @@ -8154,7 +8502,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_alias/{name}": { @@ -8186,7 +8535,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" }, "head": { "tags": [ @@ -8216,7 +8566,8 @@ "200": { "$ref": "#/components/responses/indices.exists_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_lifecycle/explain": { @@ -8295,6 +8646,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -8302,6 +8654,9 @@ "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_alias": { @@ -8330,7 +8685,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_alias": { @@ -8362,7 +8718,8 @@ "200": { "$ref": "#/components/responses/indices.get_alias-200" } - } + }, + "x-state": "Generally available" } }, "/_data_stream/{name}/_lifecycle": { @@ -8445,6 +8802,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -8452,6 +8810,9 @@ "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -8553,6 +8914,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -8560,6 +8922,9 @@ "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_data_stream": { @@ -8589,7 +8954,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_data_stream/{name}/_options": { @@ -8764,7 +9129,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_mapping": { @@ -8796,7 +9161,8 @@ "200": { "$ref": "#/components/responses/indices.get_mapping-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_mapping": { @@ -8831,7 +9197,8 @@ "200": { "$ref": "#/components/responses/indices.get_mapping-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -8874,12 +9241,16 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8922,12 +9293,16 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_settings": { @@ -8965,7 +9340,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -9011,12 +9387,16 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings": { @@ -9057,7 +9437,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" }, "put": { "tags": [ @@ -9106,12 +9487,16 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings/{name}": { @@ -9155,7 +9540,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" } }, "/_settings/{name}": { @@ -9196,7 +9582,8 @@ "200": { "$ref": "#/components/responses/indices.get_settings-200" } - } + }, + "x-state": "Generally available" } }, "/_data_stream/_migrate/{name}": { @@ -9252,7 +9639,7 @@ } } }, - "x-state": "Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0" } }, "/_data_stream/_modify": { @@ -9297,7 +9684,7 @@ } } }, - "x-state": "Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0" } }, "/_refresh": { @@ -9323,7 +9710,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -9347,7 +9735,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" } }, "/{index}/_refresh": { @@ -9376,7 +9765,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" }, "post": { "tags": [ @@ -9403,7 +9793,8 @@ "200": { "$ref": "#/components/responses/indices.refresh-200" } - } + }, + "x-state": "Generally available" } }, "/_resolve/index/{name}": { @@ -9500,6 +9891,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -9507,6 +9899,9 @@ "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover": { @@ -9545,6 +9940,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -9552,6 +9948,9 @@ "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover/{new_index}": { @@ -9593,6 +9992,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -9600,6 +10000,9 @@ "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate_index/{name}": { @@ -9695,6 +10098,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ { @@ -9702,6 +10106,9 @@ "source": "POST /_index_template/_simulate_index/my-index-000001\n" } ] +======= + "x-state": "Generally available; Added in 7.9.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate": { @@ -9734,12 +10141,16 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate/{name}": { @@ -9775,12 +10186,16 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_aliases": { @@ -9844,7 +10259,7 @@ } } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_validate/query": { @@ -9901,7 +10316,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -9956,7 +10371,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_validate/query": { @@ -10016,7 +10431,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -10074,7 +10489,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_inference/chat_completion/{inference_id}/_stream": { @@ -10153,6 +10568,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ { @@ -10160,6 +10576,9 @@ "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.18.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/completion/{inference_id}": { @@ -10249,6 +10668,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -10256,6 +10676,9 @@ "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{inference_id}": { @@ -10275,7 +10698,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "put": { "tags": [ @@ -10297,7 +10720,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "post": { "tags": [ @@ -10322,7 +10745,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "delete": { "tags": [ @@ -10346,7 +10769,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference/{task_type}/{inference_id}": { @@ -10369,7 +10792,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "put": { "tags": [ @@ -10394,7 +10817,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "post": { "tags": [ @@ -10422,7 +10845,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" }, "delete": { "tags": [ @@ -10449,7 +10872,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference": { @@ -10464,7 +10887,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0" } }, "/_inference/{task_type}/{alibabacloud_inference_id}": { @@ -10560,6 +10983,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -10567,6 +10991,9 @@ "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -10652,6 +11079,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -10659,6 +11087,9 @@ "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -10738,6 +11169,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -10745,6 +11177,9 @@ "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -10830,6 +11265,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -10837,6 +11273,9 @@ "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -10922,6 +11361,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ { @@ -10929,6 +11369,9 @@ "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -11014,6 +11457,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -11021,6 +11465,9 @@ "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -11132,6 +11579,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ { @@ -11139,6 +11587,9 @@ "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.13.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -11228,6 +11679,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -11235,6 +11687,9 @@ "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -11312,6 +11767,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -11319,6 +11775,9 @@ "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -11404,6 +11863,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -11411,6 +11871,9 @@ "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -11488,6 +11951,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -11495,6 +11959,9 @@ "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -11580,6 +12047,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ { @@ -11587,6 +12055,9 @@ "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.18.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -11663,6 +12134,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -11670,6 +12142,9 @@ "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -11755,6 +12230,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ { @@ -11762,6 +12238,9 @@ "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -11847,6 +12326,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.19.0", "x-codeSamples": [ { @@ -11854,6 +12334,9 @@ "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.19.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -11927,6 +12410,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ { @@ -11934,6 +12418,9 @@ "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.16.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/rerank/{inference_id}": { @@ -12028,6 +12515,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -12035,6 +12523,9 @@ "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/sparse_embedding/{inference_id}": { @@ -12124,6 +12615,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -12131,6 +12623,9 @@ "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/text_embedding/{inference_id}": { @@ -12220,6 +12715,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ { @@ -12227,6 +12723,9 @@ "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/": { @@ -12279,12 +12778,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -12300,7 +12803,8 @@ "application/json": {} } } - } + }, + "x-state": "Generally available" } }, "/_ingest/pipeline/{id}": { @@ -12330,7 +12834,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" }, "put": { "tags": [ @@ -12448,6 +12952,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -12455,6 +12960,9 @@ "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -12511,7 +13019,7 @@ } } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" } }, "/_ingest/pipeline": { @@ -12538,7 +13046,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0" } }, "/_ingest/processor/grok": { @@ -12575,7 +13083,7 @@ } } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -12599,6 +13107,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -12606,6 +13115,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -12627,6 +13139,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -12634,6 +13147,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/pipeline/{id}/_simulate": { @@ -12660,6 +13176,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -12667,6 +13184,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -12691,6 +13211,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -12698,6 +13219,9 @@ "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license": { @@ -12756,12 +13280,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_license\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_logstash/pipeline/{id}": { @@ -12785,6 +13313,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -12792,6 +13321,9 @@ "source": "GET _logstash/pipeline/my_pipeline\n" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -12841,6 +13373,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -12848,6 +13381,9 @@ "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -12880,7 +13416,7 @@ } } }, - "x-state": "Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0" } }, "/_logstash/pipeline": { @@ -12899,6 +13435,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ { @@ -12906,6 +13443,9 @@ "source": "GET _logstash/pipeline/my_pipeline\n" } ] +======= + "x-state": "Generally available; Added in 7.12.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mget": { @@ -12950,6 +13490,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -12957,6 +13498,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -12999,6 +13543,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -13006,6 +13551,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mget": { @@ -13053,6 +13601,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -13060,6 +13609,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13105,6 +13657,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ { @@ -13112,6 +13665,9 @@ "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 1.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -13213,7 +13769,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -13242,7 +13798,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "put": { "tags": [ @@ -13313,7 +13869,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -13340,7 +13896,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "delete": { "tags": [ @@ -13380,7 +13936,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -13432,7 +13988,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -13494,7 +14050,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "delete": { "tags": [ @@ -13560,7 +14116,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -13593,7 +14149,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" }, "put": { "tags": [ @@ -13733,7 +14289,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" }, "delete": { "tags": [ @@ -13792,7 +14348,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -13819,7 +14375,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -14022,7 +14578,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -14071,7 +14627,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -14098,7 +14654,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -14174,7 +14730,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -14214,7 +14770,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -14241,7 +14797,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" }, "put": { "tags": [ @@ -14479,7 +15035,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "delete": { "tags": [ @@ -14555,7 +15111,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -14596,7 +15152,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" }, "put": { "tags": [ @@ -14704,7 +15260,7 @@ } } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" }, "delete": { "tags": [ @@ -14764,7 +15320,7 @@ } } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -14821,7 +15377,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "delete": { "tags": [ @@ -14872,7 +15428,7 @@ } } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -14944,6 +15500,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ { @@ -14951,6 +15508,9 @@ "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/_evaluate": { @@ -15053,6 +15613,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -15060,6 +15621,9 @@ "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -15185,7 +15749,7 @@ } }, "deprecated": true, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -15285,7 +15849,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -15351,7 +15915,7 @@ } } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/calendars": { @@ -15377,7 +15941,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -15401,7 +15965,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_ml/data_frame/analytics": { @@ -15431,7 +15995,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -15460,7 +16024,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -15492,7 +16056,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -15516,7 +16080,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -15537,7 +16101,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/datafeeds": { @@ -15561,7 +16125,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/filters": { @@ -15585,7 +16149,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -15605,7 +16169,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -15628,7 +16192,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors": { @@ -15652,7 +16216,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -15697,7 +16261,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" }, "post": { "tags": [ @@ -15740,7 +16304,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0" } }, "/_ml/trained_models": { @@ -15778,7 +16342,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -15808,7 +16372,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/_stats": { @@ -15835,7 +16399,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -15919,7 +16483,7 @@ } } }, - "x-state": "Added in 8.3.0" + "x-state": "Generally available; Added in 8.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -16003,7 +16567,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -16022,7 +16586,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "post": { "tags": [ @@ -16039,7 +16603,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -16063,7 +16627,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" }, "post": { "tags": [ @@ -16085,7 +16649,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -16115,7 +16679,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -16143,7 +16707,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -16170,7 +16734,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" }, "post": { "tags": [ @@ -16195,7 +16759,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -16270,7 +16834,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -16342,7 +16906,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -16398,7 +16962,7 @@ } } }, - "x-state": "Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -16456,7 +17020,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -16555,7 +17119,7 @@ } } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -16683,7 +17247,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -16757,7 +17321,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -16853,7 +17417,7 @@ } } }, - "x-state": "Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -16916,7 +17480,7 @@ } } }, - "x-state": "Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -17028,7 +17592,7 @@ } } }, - "x-state": "Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -17234,7 +17798,7 @@ } } }, - "x-state": "Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -17319,7 +17883,7 @@ } } }, - "x-state": "Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -17517,7 +18081,7 @@ } } }, - "x-state": "Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -17588,8 +18152,7 @@ } } }, - "x-beta": true, - "x-state": "Added in 8.6.0" + "x-state": "Generally available; Added in 8.6.0" } }, "/_msearch": { @@ -17649,7 +18212,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -17707,7 +18270,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/{index}/_msearch": { @@ -17770,7 +18333,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" }, "post": { "tags": [ @@ -17831,7 +18394,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0" } }, "/_msearch/template": { @@ -17870,6 +18433,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17877,6 +18441,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -17913,6 +18480,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17920,6 +18488,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_msearch/template": { @@ -17961,6 +18532,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -17968,6 +18540,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18007,6 +18582,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ { @@ -18014,6 +18590,9 @@ "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" } ] +======= + "x-state": "Generally available; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mtermvectors": { @@ -18070,12 +18649,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18130,12 +18713,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mtermvectors": { @@ -18195,12 +18782,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18258,12 +18849,16 @@ "$ref": "#/components/responses/mtermvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_pit": { @@ -18402,6 +18997,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ { @@ -18409,6 +19005,9 @@ "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" } ] +======= + "x-state": "Generally available; Added in 7.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/{id}/{context}": { @@ -18447,12 +19046,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18489,12 +19092,16 @@ "$ref": "#/components/responses/put_script-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -18550,6 +19157,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -18557,6 +19165,9 @@ "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -18655,6 +19266,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -18662,6 +19274,9 @@ "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -18706,7 +19321,7 @@ } } }, - "x-state": "Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -18748,6 +19363,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -18755,6 +19371,9 @@ "source": "GET _query_rules/my-ruleset/\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -18833,6 +19452,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -18840,6 +19460,9 @@ "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -18873,7 +19496,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" } }, "/_query_rules": { @@ -18939,6 +19562,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -18946,6 +19570,9 @@ "source": "GET _query_rules/?from=0&size=3\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_test": { @@ -19030,6 +19657,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -19037,6 +19665,9 @@ "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rank_eval": { @@ -19069,7 +19700,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -19100,7 +19731,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/{index}/_rank_eval": { @@ -19136,7 +19767,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" }, "post": { "tags": [ @@ -19170,7 +19801,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0" } }, "/_reindex": { @@ -19440,6 +20071,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 2.3.0", "x-codeSamples": [ { @@ -19447,6 +20079,9 @@ "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_render/template": { @@ -19465,12 +20100,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19487,12 +20126,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_render/template/{id}": { @@ -19516,12 +20159,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19543,12 +20190,16 @@ "$ref": "#/components/responses/render_search_template-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/painless/_execute": { @@ -19567,6 +20218,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -19574,6 +20226,9 @@ "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19590,6 +20245,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -19597,6 +20253,9 @@ "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" } ] +======= + "x-state": "Technical preview; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search": { @@ -19749,12 +20408,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19905,12 +20568,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search": { @@ -20066,12 +20733,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20225,12 +20896,16 @@ "$ref": "#/components/responses/search-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}": { @@ -20271,6 +20946,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -20278,6 +20954,9 @@ "source": "GET _application/search_application/my-app/\n" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -20344,6 +21023,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -20351,6 +21031,9 @@ "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -20384,7 +21067,7 @@ } } }, - "x-beta": true + "x-state": "Beta; Added in 8.8.0" } }, "/_application/analytics/{name}": { @@ -20405,6 +21088,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -20412,6 +21096,9 @@ "source": "GET _application/analytics/my*\n" } ] +======= + "x-state": "Technical preview; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -20445,7 +21132,7 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.8.0" }, "delete": { "tags": [ @@ -20480,7 +21167,7 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview; Added in 8.8.0" } }, "/_application/analytics": { @@ -20496,6 +21183,7 @@ } }, "deprecated": true, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -20503,6 +21191,9 @@ "source": "GET _application/analytics/my*\n" } ] +======= + "x-state": "Technical preview; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application": { @@ -20578,6 +21269,7 @@ } } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -20585,6 +21277,9 @@ "source": "GET _application/search_application?from=0&size=3&q=app*\n" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}/_search": { @@ -20611,6 +21306,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -20618,6 +21314,9 @@ "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20642,6 +21341,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD "x-beta": true, "x-codeSamples": [ { @@ -20649,6 +21349,9 @@ "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" } ] +======= + "x-state": "Beta; Added in 8.8.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -20708,6 +21411,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -20715,6 +21419,9 @@ "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20772,6 +21479,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -20779,6 +21487,9 @@ "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/template": { @@ -20840,6 +21551,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -20847,6 +21559,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20906,6 +21621,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -20913,6 +21629,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search/template": { @@ -20977,6 +21696,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -20984,6 +21704,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21046,6 +21769,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ { @@ -21053,6 +21777,9 @@ "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_authenticate": { @@ -21144,6 +21871,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ { @@ -21151,6 +21879,9 @@ "source": "GET /_security/_authenticate\n" } ] +======= + "x-state": "Generally available; Added in 5.5.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key": { @@ -21278,6 +22009,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -21285,6 +22017,9 @@ "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -21309,6 +22044,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -21316,6 +22052,9 @@ "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21340,6 +22079,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -21347,6 +22087,9 @@ "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -21473,6 +22216,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ { @@ -21480,6 +22224,9 @@ "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.7.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role/{name}": { @@ -21500,12 +22247,16 @@ "$ref": "#/components/responses/security.get_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -21533,12 +22284,16 @@ "$ref": "#/components/responses/security.put_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21566,12 +22321,16 @@ "$ref": "#/components/responses/security.put_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -21630,12 +22389,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "DELETE /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege/_builtin": { @@ -21687,6 +22450,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ { @@ -21694,6 +22458,9 @@ "source": "GET /_security/privilege/_builtin\n" } ] +======= + "x-state": "Generally available; Added in 7.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role": { @@ -21709,12 +22476,16 @@ "$ref": "#/components/responses/security.get_role-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /_security/role/my_admin_role\n" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_has_privileges": { @@ -21736,6 +22507,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -21743,6 +22515,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21762,6 +22537,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -21769,6 +22545,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{user}/_has_privileges": { @@ -21795,6 +22574,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -21802,6 +22582,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21826,6 +22609,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ { @@ -21833,6 +22617,9 @@ "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" } ] +======= + "x-state": "Generally available; Added in 6.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/api_key": { @@ -21862,6 +22649,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -21869,6 +22657,9 @@ "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21896,6 +22687,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ { @@ -21903,6 +22695,9 @@ "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/role": { @@ -21921,6 +22716,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -21928,6 +22724,9 @@ "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21944,6 +22743,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ { @@ -21951,6 +22751,9 @@ "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" } ] +======= + "x-state": "Generally available; Added in 8.15.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/{id}": { @@ -22038,6 +22841,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.4.0", "x-codeSamples": [ { @@ -22045,6 +22849,9 @@ "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 8.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/close": { @@ -22099,6 +22906,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22106,6 +22914,9 @@ "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/async/delete/{id}": { @@ -22141,7 +22952,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql/async/{id}": { @@ -22254,7 +23065,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql/async/status/{id}": { @@ -22320,7 +23131,7 @@ } } }, - "x-state": "Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0" } }, "/_sql": { @@ -22344,6 +23155,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22351,6 +23163,9 @@ "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22372,6 +23187,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22379,6 +23195,9 @@ "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/translate": { @@ -22397,6 +23216,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22404,6 +23224,9 @@ "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22420,6 +23243,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ { @@ -22427,6 +23251,9 @@ "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" } ] +======= + "x-state": "Generally available; Added in 6.3.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms/{id}": { @@ -22504,6 +23331,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -22511,6 +23339,9 @@ "source": "GET _synonyms/my-synonyms-set\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -22584,7 +23415,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" }, "delete": { "tags": [ @@ -22618,7 +23449,7 @@ } } }, - "x-state": "Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -22671,6 +23502,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -22678,6 +23510,9 @@ "source": "GET _synonyms/my-synonyms-set/test-1\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -22753,6 +23588,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -22760,6 +23596,9 @@ "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -22810,6 +23649,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -22817,6 +23657,9 @@ "source": "DELETE _synonyms/my-synonyms-set/test-1\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms": { @@ -22884,6 +23727,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ { @@ -22891,6 +23735,9 @@ "source": "GET _synonyms\n" } ] +======= + "x-state": "Generally available; Added in 8.10.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_tasks/{task_id}": { @@ -22976,6 +23823,7 @@ } } }, +<<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ { @@ -22983,6 +23831,9 @@ "source": "GET _tasks?actions=cluster:*\n" } ] +======= + "x-state": "Technical preview; Added in 5.0.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_terms_enum": { @@ -23006,6 +23857,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -23013,6 +23865,9 @@ "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23034,6 +23889,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ { @@ -23041,6 +23897,9 @@ "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" } ] +======= + "x-state": "Generally available; Added in 7.14.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors/{id}": { @@ -23100,12 +23959,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23163,12 +24026,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors": { @@ -23225,12 +24092,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23285,12 +24156,16 @@ "$ref": "#/components/responses/termvectors-200" } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}": { @@ -23323,7 +24198,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" }, "put": { "tags": [ @@ -23442,6 +24317,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -23449,6 +24325,9 @@ "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -23517,7 +24396,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform": { @@ -23547,7 +24426,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -23644,7 +24523,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -23671,6 +24550,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -23678,6 +24558,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23702,6 +24585,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -23709,6 +24593,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/_preview": { @@ -23732,6 +24619,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -23739,6 +24627,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23760,6 +24651,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -23767,6 +24659,9 @@ "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}/_reset": { @@ -23828,7 +24723,7 @@ } } }, - "x-state": "Added in 8.1.0" + "x-state": "Generally available; Added in 8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -23880,7 +24775,7 @@ } } }, - "x-state": "Added in 8.7.0" + "x-state": "Generally available; Added in 8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -23942,7 +24837,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -24034,7 +24929,7 @@ } } }, - "x-state": "Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -24201,6 +25096,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ { @@ -24208,6 +25104,9 @@ "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 7.2.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_update/{id}": { @@ -24486,12 +25385,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_update_by_query": { @@ -24954,6 +25857,7 @@ } } }, +<<<<<<< HEAD "x-state": "Added in 2.4.0", "x-codeSamples": [ { @@ -24961,6 +25865,9 @@ "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" } ] +======= + "x-state": "Generally available; Added in 2.4.0" +>>>>>>> d9ed256a7 (openapi: adding more info in x-state) } } }, @@ -35188,7 +36095,7 @@ }, "prune": { "description": "Whether to perform pruning, omitting the non-significant tokens from the query to improve query performance.\nIf prune is true but the pruning_config is not specified, pruning will occur but default values will be used.\nDefault: false", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.15.0", "type": "boolean" }, "pruning_config": { @@ -38873,7 +39780,7 @@ }, "dataset.size": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-state": "Added in 8.11.0", + "x-state": "Generally available; Added in 8.11.0", "oneOf": [ { "type": "string" @@ -49262,12 +50169,12 @@ }, "ingested_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents ingested by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.", - "x-state": "Added in 8.15.0", + "x-state": "Generally available; Added in 8.15.0", "type": "number" }, "produced_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents produced by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.\nIn situations where there are subsequent pipelines, the value represents the size of the document after all pipelines have run.", - "x-state": "Added in 8.15.0", + "x-state": "Generally available; Added in 8.15.0", "type": "number" } }, @@ -51002,7 +51909,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "boolean" }, "time_series_metric": { @@ -51010,7 +51917,7 @@ }, "non_dimension_indices": { "description": "If this list is present in response then some indices have the\nfield marked as a dimension and other indices, the ones in this list, do not.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -51018,7 +51925,7 @@ }, "metric_conflicts_indices": { "description": "The list of indices where this field is present if these indices\ndon’t have the same `time_series_metric` value for this field.", - "x-state": "Technical preview", + "x-state": "Technical preview; Added in 8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -56095,7 +57002,7 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", - "x-beta": true, + "x-state": "Beta; Added in 8.9.0", "type": "boolean" } }, From a37a0079593187b9a6e507f5a648a1e6c30f3d8d Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Tue, 3 Jun 2025 17:25:45 +0200 Subject: [PATCH 2/6] getting flavor from config to fix serverless output --- .../clients_schema_to_openapi/src/lib.rs | 43 +- .../clients_schema_to_openapi/src/paths.rs | 5 +- .../clients_schema_to_openapi/src/schemas.rs | 2 +- .../elasticsearch-serverless-openapi.json | 909 +++++++++++++++--- 4 files changed, 774 insertions(+), 185 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index 6664466bb0..1dbc23df76 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -103,7 +103,7 @@ pub fn convert_expanded_schema(model: &IndexedModel, config: &Configuration) -> continue; } } - paths::add_endpoint(endpoint, &mut tac, &mut openapi.paths)?; + paths::add_endpoint(endpoint, &mut tac, &mut openapi.paths, &config.flavor)?; } // // Sort maps to ensure output stability @@ -149,34 +149,33 @@ fn info(model: &IndexedModel) -> openapiv3::Info { } } -pub fn availability_as_extensions(availabilities: &Option) -> IndexMap { +pub fn availability_as_extensions(availabilities: &Option, flavor: &Option) -> IndexMap { let mut result = IndexMap::new(); - if let Some(avails) = availabilities { - // We may have several availabilities, but since generally exists only on stateful (stack) - for (_, availability) in avails { - if let Some(stability) = &availability.stability { - let mut since_str = "".to_string(); - if let Some(since) = &availability.since { - since_str = "; Added in ".to_string() + since; - } - match stability { - Stability::Beta => { - let beta_since = "Beta".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(beta_since)); + if let Some(flavor) = flavor { + if let Some(availability) = avails.get(flavor) { + if let Some(stability) = &availability.stability { + let mut since_str = "".to_string(); + if let Some(since) = &availability.since { + since_str = "; Added in ".to_string() + since; } - Stability::Experimental => { - let exp_since = "Technical preview".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(exp_since)); - } - Stability::Stable => { - let stable_since = "Generally available".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(stable_since)); + match stability { + Stability::Beta => { + let beta_since = "Beta".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(beta_since)); + } + Stability::Experimental => { + let exp_since = "Technical preview".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(exp_since)); + } + Stability::Stable => { + let stable_since = "Generally available".to_string() + &since_str; + result.insert("x-state".to_string(), serde_json::Value::String(stable_since)); + } } } } } } - result } diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index 37ed2ae8c0..06b1b3d159 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -19,7 +19,7 @@ use std::collections::HashMap; use std::fmt::Write; use anyhow::{anyhow, bail}; -use clients_schema::Property; +use clients_schema::{Flavor, Property}; use indexmap::IndexMap; use indexmap::indexmap; use icu_segmenter::SentenceSegmenter; @@ -37,6 +37,7 @@ pub fn add_endpoint( endpoint: &clients_schema::Endpoint, tac: &mut TypesAndComponents, out: &mut Paths, + flavor: &Option ) -> anyhow::Result<()> { if endpoint.request.is_none() { // tracing::warn!("Endpoint {} is missing a request -- ignored", &endpoint.name); @@ -310,7 +311,7 @@ pub fn add_endpoint( deprecated: endpoint.deprecation.is_some(), security: None, servers: vec![], - extensions, + extensions: crate::availability_as_extensions(&endpoint.availability, flavor), }; diff --git a/compiler-rs/clients_schema_to_openapi/src/schemas.rs b/compiler-rs/clients_schema_to_openapi/src/schemas.rs index 9d4ebe5b4f..6add3f76a0 100644 --- a/compiler-rs/clients_schema_to_openapi/src/schemas.rs +++ b/compiler-rs/clients_schema_to_openapi/src/schemas.rs @@ -469,7 +469,7 @@ impl<'a> TypesAndComponents<'a> { data.external_docs = self.convert_external_docs(prop); data.deprecated = prop.deprecation.is_some(); data.description = self.property_description(prop)?; - data.extensions = crate::availability_as_extensions(&prop.availability); + data.extensions = crate::availability_as_extensions(&prop.availability, &self.config.flavor); // TODO: prop.aliases as extensions // TODO: prop.server_default as extension // TODO: prop.doc_id as extension (new representation of since and stability) diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 11d829acc7..aa10190df3 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -78,6 +78,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -89,6 +90,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -122,7 +126,7 @@ } } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available" } }, "/_async_search/status/{id}": { @@ -185,6 +189,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.11.0", "x-codeSamples": [ @@ -196,6 +201,9 @@ ======= "x-state": "Generally available; Added in 7.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_async_search": { @@ -345,6 +353,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -356,6 +365,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_async_search": { @@ -508,6 +520,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -519,6 +532,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_bulk": { @@ -895,6 +911,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ @@ -906,6 +923,9 @@ ======= "x-state": "Generally available; Added in 5.1.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/component_templates/{name}": { @@ -938,6 +958,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.1.0", "x-codeSamples": [ @@ -949,6 +970,9 @@ ======= "x-state": "Generally available; Added in 5.1.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/count": { @@ -1184,6 +1208,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1195,6 +1220,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1230,6 +1258,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1241,6 +1270,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/datafeeds": { @@ -1270,6 +1302,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1281,6 +1314,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1313,6 +1349,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1324,6 +1361,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/anomaly_detectors": { @@ -1356,6 +1396,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1367,6 +1408,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1402,6 +1446,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1413,6 +1458,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/trained_models": { @@ -1451,6 +1499,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1462,6 +1511,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/trained_models/{model_id}": { @@ -1503,6 +1555,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1514,6 +1567,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/transforms": { @@ -1549,6 +1605,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1560,6 +1617,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/transforms/{transform_id}": { @@ -1598,6 +1658,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -1609,6 +1670,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search/scroll": { @@ -1907,6 +1971,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ @@ -1918,6 +1983,9 @@ ======= "x-state": "Generally available; Added in 7.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_component_template/{name}": { @@ -1950,7 +2018,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -1978,6 +2046,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ @@ -1989,6 +2058,9 @@ ======= "x-state": "Generally available; Added in 7.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -2016,6 +2088,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.8.0", "x-codeSamples": [ @@ -2027,6 +2100,9 @@ ======= "x-state": "Generally available; Added in 7.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -2080,7 +2156,7 @@ } } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available" }, "head": { "tags": [ @@ -2130,7 +2206,7 @@ } } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available" } }, "/_component_template": { @@ -2160,7 +2236,7 @@ "$ref": "#/components/responses/cluster.get_component_template-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available" } }, "/_info/{target}": { @@ -2219,7 +2295,7 @@ } } }, - "x-state": "Generally available; Added in 8.9.0" + "x-state": "Generally available" } }, "/_connector/{connector_id}/_check_in": { @@ -2268,7 +2344,7 @@ } } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}": { @@ -2314,7 +2390,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" }, "put": { "tags": [ @@ -2335,6 +2411,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -2346,6 +2423,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -2404,7 +2484,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" } }, "/_connector": { @@ -2514,7 +2594,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" }, "put": { "tags": [ @@ -2530,6 +2610,7 @@ "$ref": "#/components/responses/connector.put-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -2541,6 +2622,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -2602,7 +2686,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -2646,7 +2730,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -2681,7 +2765,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" }, "delete": { "tags": [ @@ -2720,7 +2804,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" } }, "/_connector/_sync_job": { @@ -2820,7 +2904,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" }, "post": { "tags": [ @@ -2878,6 +2962,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -2889,6 +2974,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -2932,7 +3020,7 @@ } } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_api_key_id": { @@ -3004,6 +3092,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3015,6 +3104,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_configuration": { @@ -3092,6 +3184,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3103,6 +3196,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_error": { @@ -3181,6 +3277,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -3192,6 +3289,9 @@ ======= "x-state": "Technical preview; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering": { @@ -3275,6 +3375,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3286,6 +3387,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -3347,7 +3451,7 @@ } } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_index_name": { @@ -3426,6 +3530,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3437,6 +3542,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_name": { @@ -3507,6 +3615,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3518,6 +3627,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_native": { @@ -3578,7 +3690,7 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta" } }, "/_connector/{connector_id}/_pipeline": { @@ -3650,6 +3762,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3661,6 +3774,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_scheduling": { @@ -3734,6 +3850,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3745,6 +3862,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_service_type": { @@ -3815,6 +3935,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -3826,6 +3947,9 @@ ======= "x-state": "Beta; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_status": { @@ -3896,6 +4020,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -3907,6 +4032,9 @@ ======= "x-state": "Technical preview; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_count": { @@ -4265,6 +4393,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -4276,6 +4405,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -4342,6 +4474,7 @@ "$ref": "#/components/responses/create-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -4353,6 +4486,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_doc/{id}": { @@ -5395,6 +5531,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -5406,6 +5543,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_scripts/{id}": { @@ -5630,7 +5770,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -5695,7 +5835,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -5739,7 +5879,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_enrich/policy/{name}/_execute": { @@ -5803,7 +5943,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_enrich/policy": { @@ -5824,7 +5964,7 @@ "$ref": "#/components/responses/enrich.get_policy-200" } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_eql/search/{id}": { @@ -5880,7 +6020,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -5914,7 +6054,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/_eql/search/status/{id}": { @@ -5984,7 +6124,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/{index}/_eql/search": { @@ -6035,6 +6175,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -6046,6 +6187,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -6094,6 +6238,7 @@ "$ref": "#/components/responses/eql.search-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -6105,6 +6250,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_query/queries/{id}": { @@ -6175,7 +6323,7 @@ } } }, - "x-state": "Technical preview; Added in 9.1.0" + "x-state": "Technical preview" } }, "/_query/queries": { @@ -6209,7 +6357,7 @@ } } }, - "x-state": "Technical preview; Added in 9.1.0" + "x-state": "Technical preview" } }, "/_query": { @@ -6626,7 +6774,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/{index}/_explain/{id}": { @@ -6813,6 +6961,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ @@ -6824,6 +6973,9 @@ ======= "x-state": "Generally available; Added in 5.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -6866,6 +7018,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ @@ -6877,6 +7030,9 @@ ======= "x-state": "Generally available; Added in 5.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_field_caps": { @@ -6924,6 +7080,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ @@ -6935,6 +7092,9 @@ ======= "x-state": "Generally available; Added in 5.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -6980,6 +7140,7 @@ "$ref": "#/components/responses/field_caps-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.4.0", "x-codeSamples": [ @@ -6991,6 +7152,9 @@ ======= "x-state": "Generally available; Added in 5.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_graph/explore": { @@ -7266,6 +7430,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -7277,6 +7442,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_analyze": { @@ -7878,7 +8046,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -7932,7 +8100,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -7986,7 +8154,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/{index}/_alias/{name}": { @@ -8307,7 +8475,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -8338,6 +8506,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -8349,6 +8518,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -8379,6 +8551,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -8390,6 +8563,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -8443,7 +8619,7 @@ } } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available" }, "head": { "tags": [ @@ -8646,6 +8822,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -8657,6 +8834,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_alias": { @@ -8802,6 +8982,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -8813,6 +8994,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -8914,6 +9098,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -8925,6 +9110,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_data_stream": { @@ -8954,7 +9142,7 @@ "$ref": "#/components/responses/indices.get_data_stream-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/_data_stream/{name}/_options": { @@ -9129,7 +9317,7 @@ "$ref": "#/components/responses/indices.get_index_template-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/_mapping": { @@ -9639,7 +9827,7 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available" } }, "/_data_stream/_modify": { @@ -9684,7 +9872,7 @@ } } }, - "x-state": "Generally available; Added in 7.16.0" + "x-state": "Generally available" } }, "/_refresh": { @@ -9891,6 +10079,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -9902,6 +10091,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{alias}/_rollover": { @@ -9940,6 +10132,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -9951,6 +10144,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{alias}/_rollover/{new_index}": { @@ -9992,6 +10188,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -10003,6 +10200,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_index_template/_simulate_index/{name}": { @@ -10098,6 +10298,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.9.0", "x-codeSamples": [ @@ -10109,6 +10310,9 @@ ======= "x-state": "Generally available; Added in 7.9.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_index_template/_simulate": { @@ -10259,7 +10463,7 @@ } } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" } }, "/_validate/query": { @@ -10316,7 +10520,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -10371,7 +10575,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" } }, "/{index}/_validate/query": { @@ -10431,7 +10635,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -10489,7 +10693,7 @@ "$ref": "#/components/responses/indices.validate_query-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" } }, "/_inference/chat_completion/{inference_id}/_stream": { @@ -10568,6 +10772,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ @@ -10579,6 +10784,9 @@ ======= "x-state": "Generally available; Added in 8.18.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/completion/{inference_id}": { @@ -10668,6 +10876,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -10679,6 +10888,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{inference_id}": { @@ -10698,7 +10910,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -10720,7 +10932,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -10745,7 +10957,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -10769,7 +10981,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" } }, "/_inference/{task_type}/{inference_id}": { @@ -10792,7 +11004,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -10817,7 +11029,7 @@ "$ref": "#/components/responses/inference.put-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -10845,7 +11057,7 @@ "$ref": "#/components/responses/inference.inference-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -10872,7 +11084,7 @@ "$ref": "#/components/responses/inference.delete-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" } }, "/_inference": { @@ -10887,7 +11099,7 @@ "$ref": "#/components/responses/inference.get-200" } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available" } }, "/_inference/{task_type}/{alibabacloud_inference_id}": { @@ -10983,6 +11195,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ @@ -10994,6 +11207,9 @@ ======= "x-state": "Generally available; Added in 8.16.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -11079,6 +11295,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ @@ -11090,6 +11307,9 @@ ======= "x-state": "Generally available; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -11169,6 +11389,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ @@ -11180,6 +11401,9 @@ ======= "x-state": "Generally available; Added in 8.16.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -11265,6 +11489,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ @@ -11276,6 +11501,9 @@ ======= "x-state": "Generally available; Added in 8.14.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -11361,6 +11589,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.14.0", "x-codeSamples": [ @@ -11372,6 +11601,9 @@ ======= "x-state": "Generally available; Added in 8.14.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -11457,6 +11689,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ @@ -11468,6 +11701,9 @@ ======= "x-state": "Generally available; Added in 8.13.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -11579,6 +11815,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.13.0", "x-codeSamples": [ @@ -11590,6 +11827,9 @@ ======= "x-state": "Generally available; Added in 8.13.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -11679,6 +11919,7 @@ } }, "deprecated": true, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -11690,6 +11931,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -11767,6 +12011,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -11778,6 +12023,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -11863,6 +12111,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -11874,6 +12123,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -11951,6 +12203,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ @@ -11962,6 +12215,9 @@ ======= "x-state": "Generally available; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -12047,6 +12303,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.18.0", "x-codeSamples": [ @@ -12058,6 +12315,9 @@ ======= "x-state": "Generally available; Added in 8.18.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -12134,6 +12394,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -12145,6 +12406,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -12230,6 +12494,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.12.0", "x-codeSamples": [ @@ -12241,6 +12506,9 @@ ======= "x-state": "Generally available; Added in 8.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -12326,6 +12594,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.19.0", "x-codeSamples": [ @@ -12337,6 +12606,9 @@ ======= "x-state": "Generally available; Added in 8.19.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -12410,6 +12682,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.16.0", "x-codeSamples": [ @@ -12421,6 +12694,9 @@ ======= "x-state": "Generally available; Added in 8.16.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/rerank/{inference_id}": { @@ -12515,6 +12791,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -12526,6 +12803,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/sparse_embedding/{inference_id}": { @@ -12615,6 +12895,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -12626,6 +12907,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/text_embedding/{inference_id}": { @@ -12715,6 +12999,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.11.0", "x-codeSamples": [ @@ -12726,6 +13011,9 @@ ======= "x-state": "Generally available; Added in 8.11.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/": { @@ -12834,7 +13122,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -12952,6 +13240,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -12963,6 +13252,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -13019,7 +13311,7 @@ } } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available" } }, "/_ingest/pipeline": { @@ -13046,7 +13338,7 @@ "$ref": "#/components/responses/ingest.get_pipeline-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available" } }, "/_ingest/processor/grok": { @@ -13083,7 +13375,7 @@ } } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available" } }, "/_ingest/pipeline/_simulate": { @@ -13107,6 +13399,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -13118,6 +13411,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13139,6 +13435,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -13150,6 +13447,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ingest/pipeline/{id}/_simulate": { @@ -13176,6 +13476,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -13187,6 +13488,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13211,6 +13515,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -13222,6 +13527,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_license": { @@ -13313,6 +13621,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ @@ -13324,6 +13633,9 @@ ======= "x-state": "Generally available; Added in 7.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -13373,6 +13685,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ @@ -13384,6 +13697,9 @@ ======= "x-state": "Generally available; Added in 7.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -13416,7 +13732,7 @@ } } }, - "x-state": "Generally available; Added in 7.12.0" + "x-state": "Generally available" } }, "/_logstash/pipeline": { @@ -13435,6 +13751,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.12.0", "x-codeSamples": [ @@ -13446,6 +13763,9 @@ ======= "x-state": "Generally available; Added in 7.12.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_mget": { @@ -13490,6 +13810,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ @@ -13501,6 +13822,9 @@ ======= "x-state": "Generally available; Added in 1.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13543,6 +13867,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ @@ -13554,6 +13879,9 @@ ======= "x-state": "Generally available; Added in 1.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_mget": { @@ -13601,6 +13929,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ @@ -13612,6 +13941,9 @@ ======= "x-state": "Generally available; Added in 1.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13657,6 +13989,7 @@ "$ref": "#/components/responses/mget-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 1.3.0", "x-codeSamples": [ @@ -13668,6 +14001,9 @@ ======= "x-state": "Generally available; Added in 1.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -13769,7 +14105,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/calendars/{calendar_id}": { @@ -13798,7 +14134,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -13869,7 +14205,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -13896,7 +14232,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -13936,7 +14272,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -13988,7 +14324,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -14050,7 +14386,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -14116,7 +14452,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}": { @@ -14149,7 +14485,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -14289,7 +14625,7 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -14348,7 +14684,7 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -14375,7 +14711,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -14578,7 +14914,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -14627,7 +14963,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/filters/{filter_id}": { @@ -14654,7 +14990,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -14730,7 +15066,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -14770,7 +15106,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -14797,7 +15133,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -15035,7 +15371,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -15111,7 +15447,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}": { @@ -15152,7 +15488,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -15260,7 +15596,7 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -15320,7 +15656,7 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -15377,7 +15713,7 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -15428,7 +15764,7 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -15500,6 +15836,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.7.0", "x-codeSamples": [ @@ -15511,6 +15848,9 @@ ======= "x-state": "Generally available; Added in 7.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/data_frame/_evaluate": { @@ -15613,6 +15953,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ @@ -15624,6 +15965,9 @@ ======= "x-state": "Generally available; Added in 7.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -15749,7 +16093,7 @@ } }, "deprecated": true, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/calendars/{calendar_id}/events": { @@ -15849,7 +16193,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -15915,7 +16259,7 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_ml/calendars": { @@ -15941,7 +16285,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -15965,7 +16309,7 @@ "$ref": "#/components/responses/ml.get_calendars-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics": { @@ -15995,7 +16339,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/_stats": { @@ -16024,7 +16368,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -16056,7 +16400,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -16080,7 +16424,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/_stats": { @@ -16101,7 +16445,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/datafeeds": { @@ -16125,7 +16469,7 @@ "$ref": "#/components/responses/ml.get_datafeeds-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/filters": { @@ -16149,7 +16493,7 @@ "$ref": "#/components/responses/ml.get_filters-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/_stats": { @@ -16169,7 +16513,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -16192,7 +16536,7 @@ "$ref": "#/components/responses/ml.get_job_stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors": { @@ -16216,7 +16560,7 @@ "$ref": "#/components/responses/ml.get_jobs-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -16261,7 +16605,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -16304,7 +16648,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available" } }, "/_ml/trained_models": { @@ -16342,7 +16686,7 @@ "$ref": "#/components/responses/ml.get_trained_models-200" } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -16372,7 +16716,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" } }, "/_ml/trained_models/_stats": { @@ -16399,7 +16743,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats-200" } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -16483,7 +16827,7 @@ } } }, - "x-state": "Generally available; Added in 8.3.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -16567,7 +16911,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/_preview": { @@ -16586,7 +16930,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -16603,7 +16947,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -16627,7 +16971,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -16649,7 +16993,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -16679,7 +17023,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -16707,7 +17051,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/_preview": { @@ -16734,7 +17078,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -16759,7 +17103,7 @@ "$ref": "#/components/responses/ml.preview_datafeed-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -16834,7 +17178,7 @@ } } }, - "x-state": "Generally available; Added in 8.0.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -16906,7 +17250,7 @@ } } }, - "x-state": "Generally available; Added in 8.0.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -16962,7 +17306,7 @@ } } }, - "x-state": "Generally available; Added in 7.14.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -17020,7 +17364,7 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -17119,7 +17463,7 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -17247,7 +17591,7 @@ } } }, - "x-state": "Generally available; Added in 8.0.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -17321,7 +17665,7 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -17417,7 +17761,7 @@ } } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -17480,7 +17824,7 @@ } } }, - "x-state": "Generally available; Added in 8.0.0" + "x-state": "Generally available" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -17592,7 +17936,7 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -17798,7 +18142,7 @@ } } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available" } }, "/_ml/filters/{filter_id}/_update": { @@ -17883,7 +18227,7 @@ } } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -18081,7 +18425,7 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -18152,7 +18496,7 @@ } } }, - "x-state": "Generally available; Added in 8.6.0" + "x-state": "Beta" } }, "/_msearch": { @@ -18212,7 +18556,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -18270,7 +18614,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" } }, "/{index}/_msearch": { @@ -18333,7 +18677,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -18394,7 +18738,7 @@ "$ref": "#/components/responses/msearch-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available" } }, "/_msearch/template": { @@ -18433,6 +18777,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -18444,6 +18789,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -18480,6 +18828,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -18491,6 +18840,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_msearch/template": { @@ -18532,6 +18884,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -18543,6 +18896,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -18582,6 +18938,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.0.0", "x-codeSamples": [ @@ -18593,6 +18950,9 @@ ======= "x-state": "Generally available; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_mtermvectors": { @@ -18997,6 +19357,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.10.0", "x-codeSamples": [ @@ -19008,6 +19369,9 @@ ======= "x-state": "Generally available; Added in 7.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_scripts/{id}/{context}": { @@ -19157,6 +19521,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -19168,6 +19533,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -19266,6 +19634,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -19277,6 +19646,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -19321,7 +19693,7 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available" } }, "/_query_rules/{ruleset_id}": { @@ -19363,6 +19735,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -19374,6 +19747,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -19452,6 +19828,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -19463,6 +19840,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -19496,7 +19876,7 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available" } }, "/_query_rules": { @@ -19562,6 +19942,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -19573,6 +19954,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_query_rules/{ruleset_id}/_test": { @@ -19657,6 +20041,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -19668,6 +20053,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_rank_eval": { @@ -19700,7 +20088,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -19731,7 +20119,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/{index}/_rank_eval": { @@ -19767,7 +20155,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" }, "post": { "tags": [ @@ -19801,7 +20189,7 @@ "$ref": "#/components/responses/rank_eval-200" } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available" } }, "/_reindex": { @@ -20071,6 +20459,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.3.0", "x-codeSamples": [ @@ -20082,6 +20471,9 @@ ======= "x-state": "Generally available; Added in 2.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_render/template": { @@ -20218,6 +20610,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -20229,6 +20622,9 @@ ======= "x-state": "Technical preview; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -20245,6 +20641,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -20256,6 +20653,9 @@ ======= "x-state": "Technical preview; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search": { @@ -20946,6 +21346,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -20957,6 +21358,9 @@ ======= "x-state": "Beta; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -21023,6 +21427,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -21034,6 +21439,9 @@ ======= "x-state": "Beta; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -21067,7 +21475,7 @@ } } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta" } }, "/_application/analytics/{name}": { @@ -21088,6 +21496,7 @@ } }, "deprecated": true, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -21099,6 +21508,9 @@ ======= "x-state": "Technical preview; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -21132,7 +21544,7 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 8.8.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -21167,7 +21579,7 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 8.8.0" + "x-state": "Technical preview" } }, "/_application/analytics": { @@ -21183,6 +21595,7 @@ } }, "deprecated": true, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -21194,6 +21607,9 @@ ======= "x-state": "Technical preview; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_application/search_application": { @@ -21269,6 +21685,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -21280,6 +21697,9 @@ ======= "x-state": "Beta; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_application/search_application/{name}/_search": { @@ -21306,6 +21726,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -21317,6 +21738,9 @@ ======= "x-state": "Beta; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21341,6 +21765,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-beta": true, "x-codeSamples": [ @@ -21352,6 +21777,9 @@ ======= "x-state": "Beta; Added in 8.8.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Beta" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -21411,6 +21839,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ @@ -21422,6 +21851,9 @@ ======= "x-state": "Generally available; Added in 7.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21479,6 +21911,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ @@ -21490,6 +21923,9 @@ ======= "x-state": "Generally available; Added in 7.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search/template": { @@ -21551,6 +21987,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ @@ -21562,6 +21999,9 @@ ======= "x-state": "Generally available; Added in 2.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21621,6 +22061,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ @@ -21632,6 +22073,9 @@ ======= "x-state": "Generally available; Added in 2.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_search/template": { @@ -21696,6 +22140,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ @@ -21707,6 +22152,9 @@ ======= "x-state": "Generally available; Added in 2.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21769,6 +22217,7 @@ "$ref": "#/components/responses/search_template-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.0.0", "x-codeSamples": [ @@ -21780,6 +22229,9 @@ ======= "x-state": "Generally available; Added in 2.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_authenticate": { @@ -21871,6 +22323,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 5.5.0", "x-codeSamples": [ @@ -21882,6 +22335,9 @@ ======= "x-state": "Generally available; Added in 5.5.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/api_key": { @@ -22009,6 +22465,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ @@ -22020,6 +22477,9 @@ ======= "x-state": "Generally available; Added in 6.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -22044,6 +22504,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ @@ -22055,6 +22516,9 @@ ======= "x-state": "Generally available; Added in 6.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22079,6 +22543,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ @@ -22090,6 +22555,9 @@ ======= "x-state": "Generally available; Added in 6.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -22216,6 +22684,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.7.0", "x-codeSamples": [ @@ -22227,6 +22696,9 @@ ======= "x-state": "Generally available; Added in 6.7.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/role/{name}": { @@ -22450,6 +22922,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.3.0", "x-codeSamples": [ @@ -22461,6 +22934,9 @@ ======= "x-state": "Generally available; Added in 7.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/role": { @@ -22507,6 +22983,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ @@ -22518,6 +22995,9 @@ ======= "x-state": "Generally available; Added in 6.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22537,6 +23017,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ @@ -22548,6 +23029,9 @@ ======= "x-state": "Generally available; Added in 6.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/user/{user}/_has_privileges": { @@ -22574,6 +23058,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ @@ -22585,6 +23070,9 @@ ======= "x-state": "Generally available; Added in 6.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22609,6 +23097,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.4.0", "x-codeSamples": [ @@ -22620,6 +23109,9 @@ ======= "x-state": "Generally available; Added in 6.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_query/api_key": { @@ -22649,6 +23141,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ @@ -22660,6 +23153,9 @@ ======= "x-state": "Generally available; Added in 7.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22687,6 +23183,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.15.0", "x-codeSamples": [ @@ -22698,6 +23195,9 @@ ======= "x-state": "Generally available; Added in 7.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_query/role": { @@ -22716,6 +23216,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -22727,6 +23228,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22743,6 +23247,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.15.0", "x-codeSamples": [ @@ -22754,6 +23259,9 @@ ======= "x-state": "Generally available; Added in 8.15.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/api_key/{id}": { @@ -22841,6 +23349,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.4.0", "x-codeSamples": [ @@ -22852,6 +23361,9 @@ ======= "x-state": "Generally available; Added in 8.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/close": { @@ -22906,6 +23418,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ @@ -22917,6 +23430,9 @@ ======= "x-state": "Generally available; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/async/delete/{id}": { @@ -22952,7 +23468,7 @@ } } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available" } }, "/_sql/async/{id}": { @@ -23065,7 +23581,7 @@ } } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available" } }, "/_sql/async/status/{id}": { @@ -23131,7 +23647,7 @@ } } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available" } }, "/_sql": { @@ -23155,6 +23671,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ @@ -23166,6 +23683,9 @@ ======= "x-state": "Generally available; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23187,6 +23707,7 @@ "$ref": "#/components/responses/sql.query-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ @@ -23198,6 +23719,9 @@ ======= "x-state": "Generally available; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/translate": { @@ -23216,6 +23740,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ @@ -23227,6 +23752,9 @@ ======= "x-state": "Generally available; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23243,6 +23771,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 6.3.0", "x-codeSamples": [ @@ -23254,6 +23783,9 @@ ======= "x-state": "Generally available; Added in 6.3.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_synonyms/{id}": { @@ -23331,6 +23863,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -23342,6 +23875,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -23415,7 +23951,7 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available" }, "delete": { "tags": [ @@ -23449,7 +23985,7 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -23502,6 +24038,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -23513,6 +24050,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -23588,6 +24128,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -23599,6 +24140,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -23649,6 +24193,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -23660,6 +24205,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_synonyms": { @@ -23727,6 +24275,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 8.10.0", "x-codeSamples": [ @@ -23738,6 +24287,9 @@ ======= "x-state": "Generally available; Added in 8.10.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_tasks/{task_id}": { @@ -23823,6 +24375,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Technical preview", "x-codeSamples": [ @@ -23834,6 +24387,9 @@ ======= "x-state": "Technical preview; Added in 5.0.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Technical preview" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_terms_enum": { @@ -23857,6 +24413,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ @@ -23868,6 +24425,9 @@ ======= "x-state": "Generally available; Added in 7.14.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23889,6 +24449,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.14.0", "x-codeSamples": [ @@ -23900,6 +24461,9 @@ ======= "x-state": "Generally available; Added in 7.14.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_termvectors/{id}": { @@ -24198,7 +24762,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -24317,6 +24881,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -24328,6 +24893,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -24396,7 +24964,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_transform": { @@ -24426,7 +24994,7 @@ "$ref": "#/components/responses/transform.get_transform-200" } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_stats": { @@ -24523,7 +25091,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_preview": { @@ -24550,6 +25118,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -24561,6 +25130,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -24585,6 +25157,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -24596,6 +25169,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_transform/_preview": { @@ -24619,6 +25195,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -24630,6 +25207,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -24651,6 +25231,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -24662,6 +25243,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_transform/{transform_id}/_reset": { @@ -24723,7 +25307,7 @@ } } }, - "x-state": "Generally available; Added in 8.1.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_schedule_now": { @@ -24775,7 +25359,7 @@ } } }, - "x-state": "Generally available; Added in 8.7.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_start": { @@ -24837,7 +25421,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_stop": { @@ -24929,7 +25513,7 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available" } }, "/_transform/{transform_id}/_update": { @@ -25096,6 +25680,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 7.2.0", "x-codeSamples": [ @@ -25107,6 +25692,9 @@ ======= "x-state": "Generally available; Added in 7.2.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_update/{id}": { @@ -25857,6 +26445,7 @@ } } }, +<<<<<<< HEAD <<<<<<< HEAD "x-state": "Added in 2.4.0", "x-codeSamples": [ @@ -25868,6 +26457,9 @@ ======= "x-state": "Generally available; Added in 2.4.0" >>>>>>> d9ed256a7 (openapi: adding more info in x-state) +======= + "x-state": "Generally available" +>>>>>>> 0c626376e (getting flavor from config to fix serverless output) } } }, @@ -36095,7 +36687,7 @@ }, "prune": { "description": "Whether to perform pruning, omitting the non-significant tokens from the query to improve query performance.\nIf prune is true but the pruning_config is not specified, pruning will occur but default values will be used.\nDefault: false", - "x-state": "Technical preview; Added in 8.15.0", + "x-state": "Technical preview", "type": "boolean" }, "pruning_config": { @@ -39780,7 +40372,7 @@ }, "dataset.size": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-state": "Generally available; Added in 8.11.0", + "x-state": "Generally available", "oneOf": [ { "type": "string" @@ -50169,12 +50761,10 @@ }, "ingested_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents ingested by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.", - "x-state": "Generally available; Added in 8.15.0", "type": "number" }, "produced_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents produced by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.\nIn situations where there are subsequent pipelines, the value represents the size of the document after all pipelines have run.", - "x-state": "Generally available; Added in 8.15.0", "type": "number" } }, @@ -51909,7 +52499,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", - "x-state": "Technical preview; Added in 8.0.0", + "x-state": "Technical preview", "type": "boolean" }, "time_series_metric": { @@ -51917,7 +52507,7 @@ }, "non_dimension_indices": { "description": "If this list is present in response then some indices have the\nfield marked as a dimension and other indices, the ones in this list, do not.", - "x-state": "Technical preview; Added in 8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -51925,7 +52515,7 @@ }, "metric_conflicts_indices": { "description": "The list of indices where this field is present if these indices\ndon’t have the same `time_series_metric` value for this field.", - "x-state": "Technical preview; Added in 8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types.IndexName" @@ -57002,7 +57592,6 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", - "x-state": "Beta; Added in 8.9.0", "type": "boolean" } }, From 264af644fd9c930248414458543e8078b26f1a9b Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Wed, 4 Jun 2025 13:15:51 +0200 Subject: [PATCH 3/6] x-state in fields --- .../clients_schema_to_openapi/src/lib.rs | 47 ++++++++------- .../clients_schema_to_openapi/src/paths.rs | 5 +- output/openapi/elasticsearch-openapi.json | 58 +++++++++++++++++++ .../elasticsearch-serverless-openapi.json | 32 ++++++++++ 4 files changed, 120 insertions(+), 22 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index 1dbc23df76..0a97dbe534 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -23,8 +23,9 @@ pub mod cli; use indexmap::IndexMap; -use clients_schema::{Availabilities, Flavor, IndexedModel, Stability, Visibility}; +use clients_schema::{Availabilities, Availability, Flavor, IndexedModel, Stability, Visibility}; use openapiv3::{Components, OpenAPI}; +use serde_json::Value; use clients_schema::transform::ExpandConfig; use crate::components::TypesAndComponents; @@ -151,31 +152,35 @@ fn info(model: &IndexedModel) -> openapiv3::Info { pub fn availability_as_extensions(availabilities: &Option, flavor: &Option) -> IndexMap { let mut result = IndexMap::new(); + convert_availabilities(availabilities, flavor, &mut result); + result +} + +pub fn convert_availabilities(availabilities: &Option, flavor: &Option, result: &mut IndexMap) { if let Some(avails) = availabilities { - if let Some(flavor) = flavor { - if let Some(availability) = avails.get(flavor) { - if let Some(stability) = &availability.stability { - let mut since_str = "".to_string(); - if let Some(since) = &availability.since { - since_str = "; Added in ".to_string() + since; + if let Some(flav) = flavor { + if let Some(availability) = avails.get(flav) { + let Availability {since,stability,..} = &availability; + let stab = stability.clone().unwrap_or(Stability::Stable); + let mut since_str = "".to_string(); + if let Some(since) = since { + since_str = "; Added in ".to_string() + since; + } + match stab { + Stability::Beta => { + let beta_since = "Beta".to_string() + &since_str; + result.insert("x-state".to_string(), Value::String(beta_since)); + } + Stability::Experimental => { + let exp_since = "Technical preview".to_string() + &since_str; + result.insert("x-state".to_string(), Value::String(exp_since)); } - match stability { - Stability::Beta => { - let beta_since = "Beta".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(beta_since)); - } - Stability::Experimental => { - let exp_since = "Technical preview".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(exp_since)); - } - Stability::Stable => { - let stable_since = "Generally available".to_string() + &since_str; - result.insert("x-state".to_string(), serde_json::Value::String(stable_since)); - } + Stability::Stable => { + let stable_since = "Generally available".to_string() + &since_str; + result.insert("x-state".to_string(), Value::String(stable_since)); } } } } } - result } diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index 06b1b3d159..c8c8f2ec8f 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -27,9 +27,10 @@ use openapiv3::{ MediaType, Parameter, ParameterData, ParameterSchemaOrContent, PathItem, PathStyle, Paths, QueryStyle, ReferenceOr, RequestBody, Response, Responses, StatusCode, Example }; +use serde_json::Value; use clients_schema::SchemaExample; - use crate::components::TypesAndComponents; +use crate::convert_availabilities; /// Add an endpoint to the OpenAPI schema. This will result in the addition of a number of elements to the /// openapi schema's `paths` and `components` sections. @@ -61,6 +62,8 @@ pub fn add_endpoint( let request = tac.model.get_request(endpoint.request.as_ref().unwrap())?; fn parameter_data(prop: &Property, in_path: bool, tac: &mut TypesAndComponents) -> anyhow::Result { + let mut extensions: IndexMap = Default::default(); + convert_availabilities(&prop.availability, &tac.config.flavor, &mut extensions); Ok(ParameterData { name: prop.name.clone(), description: tac.property_description(prop)?, diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 68a32e5ea7..ed06f072b4 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -10274,6 +10274,7 @@ }, "cache_stats": { "description": "Objects containing information about the enrich cache stats on each ingest node.", + "x-state": "Generally available; Added in 7.16.0", "type": "array", "items": { "$ref": "#/components/schemas/enrich.stats.CacheStats" @@ -11127,12 +11128,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" } ] +======= + "x-state": "Generally available; Added in 8.11.0" +>>>>>>> 09daf2fbd (x-state in fields) } }, "/{index}/_source/{id}": { @@ -28274,6 +28279,7 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", + "x-state": "Generally available; Added in 8.2.0", "type": "array", "items": { "type": "string" @@ -28281,6 +28287,7 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", + "x-state": "Generally available; Added in 8.9.0", "type": "array", "items": { "type": "number" @@ -38193,6 +38200,7 @@ }, "remote_cluster": { "description": "The list of remote_cluster privileges that are understood by this version of Elasticsearch.", + "x-state": "Generally available; Added in 8.15.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteClusterPrivilege" @@ -42224,10 +42232,12 @@ "properties": { "remaining": { "description": "The number of remaining snapshots that were not returned due to size limits and that can be fetched by additional requests using the `next` field value.", + "x-state": "Generally available; Added in 7.15.0", "type": "number" }, "total": { "description": "The total number of snapshots that match the request when ignoring the size limit or `after` query parameter.", + "x-state": "Generally available; Added in 7.15.0", "type": "number" }, "next": { @@ -54508,6 +54518,7 @@ "url": "https://www.elastic.co/docs/reference/query-languages/query-dsl/query-dsl-text-expansion-query" }, "description": "Uses a natural language processing model to convert the query text into a list of token-weight pairs which are then used in a query against a sparse vector or rank features field.", + "x-state": "Generally available; Added in 8.8.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl.TextExpansionQuery" @@ -54521,6 +54532,7 @@ "url": "https://www.elastic.co/docs/reference/query-languages/query-dsl/query-dsl-weighted-tokens-query" }, "description": "Supports returning text_expansion query results by sending in precomputed tokens with the query.", + "x-state": "Generally available; Added in 8.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl.WeightedTokensQuery" @@ -55306,6 +55318,7 @@ "url": "https://www.elastic.co/docs/solutions/search/vector/knn#approximate-knn" }, "description": "The approximate kNN search to run.", + "x-state": "Generally available; Added in 8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" @@ -58006,6 +58019,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nDefault is `false` which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available; Added in 7.10.0", "type": "boolean" } }, @@ -58445,6 +58459,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the regular expression value with the indexed field values when set to `true`.\nWhen `false`, case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available; Added in 7.10.0", "type": "boolean" }, "flags": { @@ -59042,6 +59057,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nWhen `false`, the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available; Added in 7.10.0", "type": "boolean" } }, @@ -59159,6 +59175,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available; Added in 7.10.0", "type": "boolean" }, "rewrite": { @@ -61516,6 +61533,7 @@ }, "shard_seed": { "description": "When combined with seed, setting shard_seed ensures 100% consistent sampling over shards where data is exactly the same.", + "x-state": "Generally available; Added in 8.14.0", "type": "number" } }, @@ -64455,6 +64473,7 @@ "type": "string" }, "type": { + "x-state": "Generally available; Added in 8.0.0", "type": "string" } } @@ -66302,6 +66321,7 @@ "$ref": "#/components/schemas/indices._types.IndexSegmentSort" }, "number_of_shards": { + "x-state": "Generally available", "oneOf": [ { "type": "number" @@ -66312,6 +66332,7 @@ ] }, "number_of_replicas": { + "x-state": "Generally available", "oneOf": [ { "type": "number" @@ -74014,6 +74035,7 @@ ] }, "null_value": { + "x-state": "Generally available; Added in 7.15.0", "type": "string" } }, @@ -75509,6 +75531,7 @@ }, "is_hidden": { "description": "If `true`, the alias is hidden.\nAll indices for the alias must have the same `is_hidden` value.", + "x-state": "Generally available; Added in 7.16.0", "type": "boolean" } } @@ -76885,6 +76908,7 @@ }, "script_count": { "description": "The number of fields that declare a script.", + "x-state": "Generally available; Added in 7.13.0", "type": "number" } }, @@ -77479,6 +77503,7 @@ "type": "number" }, "data_frozen": { + "x-state": "Generally available; Added in 7.13.0", "type": "number" }, "data_hot": { @@ -77831,6 +77856,7 @@ "properties": { "adjusted_total_in_bytes": { "description": "Total amount, in bytes, of memory across all selected nodes, but using the value specified using the `es.total_memory_bytes` system property instead of measured total memory for those nodes where that system property was set.", + "x-state": "Generally available; Added in 7.16.0", "type": "number" }, "free_in_bytes": { @@ -82159,6 +82185,7 @@ }, "system": { "description": "If `true`, the data stream is created and managed by an Elastic stack component and cannot be modified through normal user interaction.", + "x-state": "Generally available; Added in 7.10.0", "type": "boolean" }, "template": { @@ -82391,6 +82418,7 @@ }, "deprecated": { "description": "Marks this index template as deprecated.\nWhen creating or updating a non-deprecated index template that uses deprecated components,\nElasticsearch will emit a deprecation warning.", + "x-state": "Generally available; Added in 8.12.0", "type": "boolean" }, "ignore_missing_component_templates": { @@ -84007,6 +84035,7 @@ "$ref": "#/components/schemas/_types.BulkStats" }, "shards": { + "x-state": "Generally available; Added in 7.15.0", "type": "object", "additionalProperties": { "type": "object" @@ -87994,6 +88023,7 @@ }, "trace_redact": { "description": "If `true` then ingest metadata `_ingest._redact._is_redacted` is set to `true` if the document has been redacted", + "x-state": "Generally available; Added in 8.16.0", "type": "boolean" } }, @@ -91654,6 +91684,7 @@ "properties": { "annotations_enabled": { "description": "If true, enables calculation and storage of the model change annotations for each entity that is being analyzed.", + "x-state": "Generally available; Added in 7.9.0", "type": "boolean" }, "enabled": { @@ -98418,6 +98449,7 @@ "$ref": "#/components/schemas/_types.TransportAddress" }, "external_id": { + "x-state": "Generally available; Added in 8.3.0", "type": "string" }, "attributes": { @@ -98771,6 +98803,7 @@ "$ref": "#/components/schemas/_types.Name" }, "type": { + "x-state": "Generally available; Added in 7.14.0", "type": "string" } }, @@ -98817,6 +98850,7 @@ }, "remote_indices": { "description": "A list of indices permissions for remote clusters.", + "x-state": "Generally available; Added in 8.14.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteIndicesPrivileges" @@ -98824,6 +98858,7 @@ }, "remote_cluster": { "description": "A list of cluster permissions for remote clusters.\nNOTE: This is limited a subset of the cluster permissions.", + "x-state": "Generally available; Added in 8.15.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteClusterPrivileges" @@ -98831,6 +98866,7 @@ }, "global": { "description": "An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges.", + "x-state": "Generally available", "oneOf": [ { "type": "array", @@ -98983,6 +99019,7 @@ }, "allow_restricted_indices": { "description": "Set to `true` if using wildcard or regular expressions for patterns that cover restricted indices. Implicitly, restricted indices have limited privileges that can cause pattern tests to fail. If restricted indices are explicitly included in the `names` list, Elasticsearch checks privileges against these indices regardless of the value set for `allow_restricted_indices`.", + "x-state": "Generally available", "type": "boolean" } }, @@ -99130,6 +99167,7 @@ }, "allow_restricted_indices": { "description": "Set to `true` if using wildcard or regular expressions for patterns that cover restricted indices. Implicitly, restricted indices have limited privileges that can cause pattern tests to fail. If restricted indices are explicitly included in the `names` list, Elasticsearch checks privileges against these indices regardless of the value set for `allow_restricted_indices`.", + "x-state": "Generally available", "type": "boolean" } }, @@ -99344,6 +99382,7 @@ }, "allow_restricted_indices": { "description": "Set to `true` if using wildcard or regular expressions for patterns that cover restricted indices. Implicitly, restricted indices have limited privileges that can cause pattern tests to fail. If restricted indices are explicitly included in the `names` list, Elasticsearch checks privileges against these indices regardless of the value set for `allow_restricted_indices`.", + "x-state": "Generally available", "type": "boolean" } }, @@ -99520,6 +99559,7 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", + "x-state": "Generally available; Added in 8.14.0", "type": "string" }, "metadata": { @@ -99534,6 +99574,7 @@ }, "limited_by": { "description": "The owner user’s permissions associated with the API key.\nIt is a point-in-time snapshot captured at creation and subsequent updates.\nAn API key’s effective permissions are an intersection of its assigned privileges and the owner user’s permissions.", + "x-state": "Generally available; Added in 8.5.0", "type": "array", "items": { "type": "object", @@ -99547,6 +99588,7 @@ }, "profile_uid": { "description": "The profile uid for the API key owner principal, if requested and if it exists", + "x-state": "Generally available; Added in 8.14.0", "type": "string" }, "_sort": { @@ -99610,12 +99652,14 @@ } }, "remote_indices": { + "x-state": "Generally available; Added in 8.14.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteIndicesPrivileges" } }, "remote_cluster": { + "x-state": "Generally available; Added in 8.15.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteClusterPrivileges" @@ -99652,6 +99696,7 @@ } }, "global": { + "x-state": "Generally available; Added in 8.0.0", "type": "object", "additionalProperties": { "type": "object", @@ -99796,6 +99841,7 @@ }, "remote_indices": { "description": "A list of indices permissions for remote clusters.", + "x-state": "Generally available; Added in 8.14.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteIndicesPrivileges" @@ -99803,6 +99849,7 @@ }, "remote_cluster": { "description": "A list of cluster permissions for remote clusters.\nNOTE: This is limited a subset of the cluster permissions.", + "x-state": "Generally available; Added in 8.15.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteClusterPrivileges" @@ -99810,6 +99857,7 @@ }, "global": { "description": "An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges.", + "x-state": "Generally available", "oneOf": [ { "type": "array", @@ -101174,6 +101222,7 @@ } }, "index_details": { + "x-state": "Generally available; Added in 7.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/snapshot._types.IndexDetails" @@ -102747,6 +102796,7 @@ }, "unattended": { "description": "If `true`, the transform runs in unattended mode. In unattended mode, the transform retries indefinitely in case\nof an error which means the transform never fails. Setting the number of retries other than infinite fails in\nvalidation.", + "x-state": "Generally available; Added in 8.5.0", "type": "boolean" } } @@ -107207,6 +107257,7 @@ "$ref": "#/components/schemas/cluster.allocation_explain.UnassignedInformation" }, "note": { + "x-state": "Generally available; Added in 7.14.0", "type": "string" } }, @@ -109783,6 +109834,7 @@ }, "encoded": { "description": "API key credentials which is the base64-encoding of\nthe UTF-8 representation of `id` and `api_key` joined\nby a colon (`:`).", + "x-state": "Generally available; Added in 7.16.0", "type": "string" } }, @@ -110442,6 +110494,7 @@ "properties": { "accepted": { "description": "Equals `true` if the snapshot was accepted. Present when the request had `wait_for_completion` set to `false`", + "x-state": "Generally available; Added in 7.15.0", "type": "boolean" }, "snapshot": { @@ -121043,6 +121096,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-state": "Generally available; Added in 8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" @@ -123084,6 +123138,7 @@ "url": "https://www.elastic.co/docs/solutions/search/vector/knn#approximate-knn" }, "description": "The approximate kNN search to run.", + "x-state": "Generally available; Added in 8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" @@ -123537,6 +123592,7 @@ }, "global": { "description": "An object defining global privileges. A global privilege is a form of cluster privilege that is request-aware. Support for global privileges is currently limited to the management of application privileges.", + "x-state": "Generally available", "type": "object", "additionalProperties": { "type": "object" @@ -123551,6 +123607,7 @@ }, "remote_indices": { "description": "A list of remote indices permissions entries.\n\nNOTE: Remote indices are effective for remote clusters configured with the API key based model.\nThey have no effect for remote clusters configured with the certificate based model.", + "x-state": "Generally available; Added in 8.14.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteIndicesPrivileges" @@ -123558,6 +123615,7 @@ }, "remote_cluster": { "description": "A list of remote cluster permissions entries.", + "x-state": "Generally available; Added in 8.15.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types.RemoteClusterPrivileges" diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index aa10190df3..bbaa531733 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -6485,12 +6485,16 @@ } } }, +<<<<<<< HEAD "x-codeSamples": [ { "lang": "Console", "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" } ] +======= + "x-state": "Generally available" +>>>>>>> 09daf2fbd (x-state in fields) } }, "/{index}/_source/{id}": { @@ -17217,6 +17221,7 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", + "x-state": "Generally available", "type": "array", "items": { "type": "string" @@ -17224,6 +17229,7 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", + "x-state": "Generally available", "type": "array", "items": { "type": "number" @@ -32251,6 +32257,7 @@ "url": "https://www.elastic.co/docs/reference/query-languages/query-dsl/query-dsl-text-expansion-query" }, "description": "Uses a natural language processing model to convert the query text into a list of token-weight pairs which are then used in a query against a sparse vector or rank features field.", + "x-state": "Generally available", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl.TextExpansionQuery" @@ -32264,6 +32271,7 @@ "url": "https://www.elastic.co/docs/reference/query-languages/query-dsl/query-dsl-weighted-tokens-query" }, "description": "Supports returning text_expansion query results by sending in precomputed tokens with the query.", + "x-state": "Generally available", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl.WeightedTokensQuery" @@ -33049,6 +33057,7 @@ "url": "https://www.elastic.co/docs/solutions/search/vector/knn#approximate-knn" }, "description": "The approximate kNN search to run.", + "x-state": "Generally available", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" @@ -35713,6 +35722,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nDefault is `false` which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available", "type": "boolean" } }, @@ -36152,6 +36162,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the regular expression value with the indexed field values when set to `true`.\nWhen `false`, case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available", "type": "boolean" }, "flags": { @@ -36749,6 +36760,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nWhen `false`, the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available", "type": "boolean" } }, @@ -36866,6 +36878,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-state": "Generally available", "type": "boolean" }, "rewrite": { @@ -41722,6 +41735,7 @@ "type": "string" }, "type": { + "x-state": "Generally available", "type": "string" } } @@ -48953,6 +48967,7 @@ ] }, "null_value": { + "x-state": "Generally available", "type": "string" } }, @@ -50448,6 +50463,7 @@ }, "is_hidden": { "description": "If `true`, the alias is hidden.\nAll indices for the alias must have the same `is_hidden` value.", + "x-state": "Generally available", "type": "boolean" } } @@ -50761,10 +50777,12 @@ }, "ingested_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents ingested by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.", + "x-state": "Generally available", "type": "number" }, "produced_as_first_pipeline_in_bytes": { "description": "Total number of bytes of all documents produced by the pipeline.\nThis field is only present on pipelines which are the first to process a document.\nThus, it is not present on pipelines which only serve as a final pipeline after a default pipeline, a pipeline run after a reroute processor, or pipelines in pipeline processors.\nIn situations where there are subsequent pipelines, the value represents the size of the document after all pipelines have run.", + "x-state": "Generally available", "type": "number" } }, @@ -53117,6 +53135,7 @@ }, "system": { "description": "If `true`, the data stream is created and managed by an Elastic stack component and cannot be modified through normal user interaction.", + "x-state": "Generally available", "type": "boolean" }, "template": { @@ -53315,6 +53334,7 @@ }, "deprecated": { "description": "Marks this index template as deprecated.\nWhen creating or updating a non-deprecated index template that uses deprecated components,\nElasticsearch will emit a deprecation warning.", + "x-state": "Generally available", "type": "boolean" }, "ignore_missing_component_templates": { @@ -57165,6 +57185,7 @@ }, "trace_redact": { "description": "If `true` then ingest metadata `_ingest._redact._is_redacted` is set to `true` if the document has been redacted", + "x-state": "Generally available", "type": "boolean" } }, @@ -57592,6 +57613,7 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", + "x-state": "Generally available", "type": "boolean" } }, @@ -60282,6 +60304,7 @@ "properties": { "annotations_enabled": { "description": "If true, enables calculation and storage of the model change annotations for each entity that is being analyzed.", + "x-state": "Generally available", "type": "boolean" }, "enabled": { @@ -63557,6 +63580,7 @@ "$ref": "#/components/schemas/_types.Name" }, "type": { + "x-state": "Generally available", "type": "string" } }, @@ -63881,6 +63905,7 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", + "x-state": "Generally available", "type": "string" }, "metadata": { @@ -63895,6 +63920,7 @@ }, "limited_by": { "description": "The owner user’s permissions associated with the API key.\nIt is a point-in-time snapshot captured at creation and subsequent updates.\nAn API key’s effective permissions are an intersection of its assigned privileges and the owner user’s permissions.", + "x-state": "Generally available", "type": "array", "items": { "type": "object", @@ -63908,6 +63934,7 @@ }, "profile_uid": { "description": "The profile uid for the API key owner principal, if requested and if it exists", + "x-state": "Generally available", "type": "string" }, "_sort": { @@ -64051,6 +64078,7 @@ } }, "global": { + "x-state": "Generally available", "type": "object", "additionalProperties": { "type": "object", @@ -64855,6 +64883,7 @@ }, "unattended": { "description": "If `true`, the transform runs in unattended mode. In unattended mode, the transform retries indefinitely in case\nof an error which means the transform never fails. Setting the number of retries other than infinite fails in\nvalidation.", + "x-state": "Generally available", "type": "boolean" } } @@ -66765,6 +66794,7 @@ }, "encoded": { "description": "API key credentials which is the base64-encoding of\nthe UTF-8 representation of `id` and `api_key` joined\nby a colon (`:`).", + "x-state": "Generally available", "type": "string" } }, @@ -72677,6 +72707,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-state": "Generally available", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" @@ -74073,6 +74104,7 @@ "url": "https://www.elastic.co/docs/solutions/search/vector/knn#approximate-knn" }, "description": "The approximate kNN search to run.", + "x-state": "Generally available", "oneOf": [ { "$ref": "#/components/schemas/_types.KnnSearch" From a346e1a8de072a91369e8acd38fe84fcb7846281 Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Fri, 6 Jun 2025 16:15:35 +0200 Subject: [PATCH 4/6] rebase --- .../clients_schema_to_openapi/src/paths.rs | 2 +- .../pkg/compiler_wasm_lib_bg.wasm | Bin 706254 -> 706091 bytes output/openapi/elasticsearch-openapi.json | 4332 +---------------- .../elasticsearch-serverless-openapi.json | 2737 +---------- 4 files changed, 13 insertions(+), 7058 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index c8c8f2ec8f..6593a23f60 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -256,7 +256,7 @@ pub fn add_endpoint( let sum_desc = split_summary_desc(&endpoint.description); // add the x-state extension for availability - let mut extensions = crate::availability_as_extensions(&endpoint.availability); + let mut extensions = crate::availability_as_extensions(&endpoint.availability, flavor); // add the x-codeSamples extension let mut code_samples = vec![]; diff --git a/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm b/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm index b847cbc1bd8c94e396aebfbcd11610d2f34958b7..5e05e41b2a270ab65ae6d4ef4ddcd6f78c5512f0 100644 GIT binary patch delta 270238 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�LK=jaV)L^9E+Gr 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 WIi0%XcMVMKbZM71^7=jI$o~hnEmPtE delta 267930 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 z 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

eW~~SmAvr>{+V6KmI>f_du+~1`(r^7P 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 d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -185,17 +175,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_async_search": { @@ -345,17 +325,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_async_search": { @@ -508,17 +478,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_autoscaling/policy/{name}": { @@ -574,17 +534,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_autoscaling/policy/my_autoscaling_policy\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -668,17 +618,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_autoscaling/policy/\n{\n \"roles\": [],\n \"deciders\": {\n \"fixed\": {\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -742,17 +682,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_autoscaling/policy/*\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_autoscaling/capacity": { @@ -808,17 +738,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_autoscaling/capacity\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_bulk": { @@ -875,16 +795,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -939,16 +850,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_bulk": { @@ -1008,16 +910,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1075,16 +968,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases": { @@ -1114,16 +998,7 @@ "$ref": "#/components/responses/cat.aliases-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/aliases?format=json&v=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases/{name}": { @@ -1156,16 +1031,7 @@ "$ref": "#/components/responses/cat.aliases-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/aliases?format=json&v=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/allocation": { @@ -1198,16 +1064,7 @@ "$ref": "#/components/responses/cat.allocation-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/allocation?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/allocation/{node_id}": { @@ -1243,16 +1100,7 @@ "$ref": "#/components/responses/cat.allocation-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/allocation?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates": { @@ -1282,17 +1130,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 5.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates/{name}": { @@ -1325,17 +1163,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 5.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count": { @@ -1359,16 +1187,7 @@ "$ref": "#/components/responses/cat.count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count/{index}": { @@ -1395,16 +1214,7 @@ "$ref": "#/components/responses/cat.count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/fielddata": { @@ -1434,16 +1244,7 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/fielddata/{fields}": { @@ -1476,16 +1277,7 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/health": { @@ -1559,16 +1351,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/health?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat": { @@ -1636,16 +1419,7 @@ "$ref": "#/components/responses/cat.indices-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/indices/{index}": { @@ -1693,16 +1467,7 @@ "$ref": "#/components/responses/cat.indices-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/master": { @@ -1776,16 +1541,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/master?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics": { @@ -1818,17 +1574,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1864,17 +1610,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds": { @@ -1904,17 +1640,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/datafeeds?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1947,17 +1673,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/datafeeds?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors": { @@ -1990,17 +1706,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -2036,17 +1742,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models": { @@ -2085,17 +1781,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/trained_models?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/trained_models/{model_id}": { @@ -2137,17 +1823,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/trained_models?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/nodeattrs": { @@ -2227,16 +1903,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/nodeattrs?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/nodes": { @@ -2353,16 +2020,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/nodes?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/pending_tasks": { @@ -2446,16 +2104,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/pending_tasks?v=trueh=insertOrder,timeInQueue,priority,source&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/plugins": { @@ -2539,16 +2188,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/plugins?v=true&s=component&h=name,component,version,description&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/recovery": { @@ -2587,16 +2227,7 @@ "$ref": "#/components/responses/cat.recovery-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/recovery?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/recovery/{index}": { @@ -2638,16 +2269,7 @@ "$ref": "#/components/responses/cat.recovery-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/recovery?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/repositories": { @@ -2721,17 +2343,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 2.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/repositories?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 2.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/segments": { @@ -2764,16 +2376,7 @@ "$ref": "#/components/responses/cat.segments-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/segments?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/segments/{index}": { @@ -2809,16 +2412,7 @@ "$ref": "#/components/responses/cat.segments-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/segments?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/shards": { @@ -2851,16 +2445,7 @@ "$ref": "#/components/responses/cat.shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/shards?format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/shards/{index}": { @@ -2896,16 +2481,7 @@ "$ref": "#/components/responses/cat.shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/shards?format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/snapshots": { @@ -2938,17 +2514,7 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 2.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/snapshots/{repository}": { @@ -2984,17 +2550,7 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 2.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/tasks": { @@ -3124,17 +2680,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/tasks?v=true&format=json\n" - } - ] -======= "x-state": "Technical preview; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/templates": { @@ -3164,17 +2710,7 @@ "$ref": "#/components/responses/cat.templates-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 5.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/templates/{name}": { @@ -3207,17 +2743,7 @@ "$ref": "#/components/responses/cat.templates-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 5.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/thread_pool": { @@ -3250,16 +2776,7 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/thread_pool?format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/thread_pool/{thread_pool_patterns}": { @@ -3295,16 +2812,7 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/thread_pool?format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms": { @@ -3340,17 +2848,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/transforms?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/transforms/{transform_id}": { @@ -3389,17 +2887,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/transforms?v=true&format=json\n" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}": { @@ -3426,17 +2914,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -3565,17 +3043,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_ccr/auto_follow/my_auto_follow_pattern\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index_patterns\" :\n [\n \"leader_index*\"\n ],\n \"follow_index_pattern\" : \"{{leader_index}}-follower\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -3628,17 +3096,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_ccr/auto_follow/my_auto_follow_pattern\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/follow": { @@ -3787,17 +3245,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /follower_index/_ccr/follow?wait_for_active_shards=1\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index\" : \"leader_index\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/info": { @@ -3869,17 +3317,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /follower_index/_ccr/info\n" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/stats": { @@ -3946,17 +3384,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /follower_index/_ccr/stats\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/forget_follower": { @@ -4049,17 +3477,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST //_ccr/forget_follower\n{\n \"follower_cluster\" : \"\",\n \"follower_index\" : \"\",\n \"follower_index_uuid\" : \"\",\n \"leader_remote_cluster\" : \"\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow": { @@ -4083,17 +3501,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}/pause": { @@ -4148,17 +3556,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/pause\n" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/pause_follow": { @@ -4210,17 +3608,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /follower_index/_ccr/pause_follow\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/auto_follow/{name}/resume": { @@ -4275,17 +3663,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/resume\n" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/resume_follow": { @@ -4387,17 +3765,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /follower_index/_ccr/resume_follow\n{\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ccr/stats": { @@ -4460,17 +3828,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_ccr/stats\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ccr/unfollow": { @@ -4525,17 +3883,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /follower_index/_ccr/unfollow\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll": { @@ -4568,16 +3916,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4608,16 +3947,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4637,16 +3967,7 @@ "$ref": "#/components/responses/clear_scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll/{scroll_id}": { @@ -4682,16 +4003,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4725,16 +4037,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4759,16 +4062,7 @@ "$ref": "#/components/responses/clear_scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_pit": { @@ -4834,17 +4128,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/allocation/explain": { @@ -4874,17 +4158,7 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4912,17 +4186,7 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_component_template/{name}": { @@ -4983,17 +4247,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -5021,17 +4275,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -5471,16 +4715,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_cluster/settings\n{\n \"persistent\" : {\n \"indices.recovery.max_bytes_per_sec\" : \"50mb\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/health": { @@ -5531,17 +4766,7 @@ "$ref": "#/components/responses/cluster.health-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cluster/health\n" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/health/{index}": { @@ -5595,17 +4820,7 @@ "$ref": "#/components/responses/cluster.health-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cluster/health\n" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_info/{target}": { @@ -5876,17 +5091,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_cluster/reroute?metric=none\n{\n \"commands\": [\n {\n \"move\": {\n \"index\": \"test\", \"shard\": 0,\n \"from_node\": \"node1\", \"to_node\": \"node2\"\n }\n },\n {\n \"allocate_replica\": {\n \"index\": \"test\", \"shard\": 1,\n \"node\": \"node3\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cluster/state": { @@ -6188,17 +5393,7 @@ "$ref": "#/components/responses/connector.put-200" } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -6383,17 +5578,7 @@ "$ref": "#/components/responses/connector.put-200" } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6728,13 +5913,7 @@ } } }, - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/_sync_job/my-connector-sync-job/_error\n{\n \"error\": \"some-error\"\n}" - } - ] + "x-state": "Technical preview" } }, "/_connector/_sync_job": { @@ -6892,17 +6071,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/_sync_job/{connector_sync_job_id}/_stats": { @@ -7093,17 +6262,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_configuration": { @@ -7181,17 +6340,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_error": { @@ -7270,17 +6419,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_features": { @@ -7355,13 +6494,7 @@ } } }, - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_features\n{\n \"features\": {\n \"document_level_security\": {\n \"enabled\": true\n },\n \"incremental_sync\": {\n \"enabled\": true\n },\n \"sync_rules\": {\n \"advanced\": {\n \"enabled\": false\n },\n \"basic\": {\n \"enabled\": true\n }\n }\n }\n}" - } - ] + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_filtering": { @@ -7445,17 +6578,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -7596,17 +6719,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_name": { @@ -7677,17 +6790,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_native": { @@ -7820,17 +6923,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_scheduling": { @@ -7904,17 +6997,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_service_type": { @@ -7985,17 +7068,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" - } - ] -======= "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_connector/{connector_id}/_status": { @@ -8066,17 +7139,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_count": { @@ -8139,16 +7202,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8209,16 +7263,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_count": { @@ -8284,16 +7329,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8357,16 +7393,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_create/{id}": { @@ -8435,17 +7462,7 @@ "$ref": "#/components/responses/create-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8512,17 +7529,7 @@ "$ref": "#/components/responses/create-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_dangling/{index_uuid}": { @@ -8595,17 +7602,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_dangling/zmM4e0JtBkeUjiHD-MihPQ?accept_data_loss=true\n" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8873,16 +7870,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index-000001/_doc/0\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -8946,16 +7934,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -9019,16 +7998,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -9159,16 +8129,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /my-index-000001/_doc/1\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -9752,17 +8713,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_delete_by_query/{task_id}/_rethrottle": { @@ -9903,16 +8854,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -9946,16 +8888,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -10501,17 +9434,7 @@ "$ref": "#/components/responses/eql.search-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -10560,17 +9483,7 @@ "$ref": "#/components/responses/eql.search-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query/async": { @@ -10730,17 +9643,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_query/async\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"wait_for_completion_timeout\": \"2s\",\n \"include_ccs_metadata\": true\n}" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query/async/{id}": { @@ -11128,16 +10031,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> 09daf2fbd (x-state in fields) } }, "/{index}/_source/{id}": { @@ -11484,16 +10378,7 @@ "$ref": "#/components/responses/explain-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11554,16 +10439,7 @@ "$ref": "#/components/responses/explain-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_features": { @@ -11715,17 +10591,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11768,17 +10634,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_field_caps": { @@ -11826,17 +10682,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -11882,17 +10728,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_fleet/global_checkpoints": { @@ -12647,16 +11483,7 @@ "$ref": "#/components/responses/graph.explore-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -12687,16 +11514,7 @@ "$ref": "#/components/responses/graph.explore-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_health_report": { @@ -12862,17 +11680,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.6.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _ilm/policy/my_policy\n{\n \"policy\": {\n \"_meta\": {\n \"description\": \"used for nginx log\",\n \"project\": {\n \"name\": \"myProject\",\n \"department\": \"myDepartment\"\n }\n },\n \"phases\": {\n \"warm\": {\n \"min_age\": \"10d\",\n \"actions\": {\n \"forcemerge\": {\n \"max_num_segments\": 1\n }\n }\n },\n \"delete\": {\n \"min_age\": \"30d\",\n \"actions\": {\n \"delete\": {}\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.6.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -13201,17 +12009,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ilm/migrate_to_data_tiers\n{\n \"legacy_template_to_delete\": \"global-template\",\n \"node_attribute\": \"custom_attribute_name\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ilm/move/{index}": { @@ -13286,17 +12084,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.6.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ilm/move/my-index-000001\n{\n \"current_step\": {\n \"phase\": \"new\",\n \"action\": \"complete\",\n \"name\": \"complete\"\n },\n \"next_step\": {\n \"phase\": \"warm\",\n \"action\": \"forcemerge\",\n \"name\": \"forcemerge\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.6.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_ilm/remove": { @@ -13554,16 +12342,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_block/{block}": { @@ -13685,17 +12464,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_block/write\n" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_analyze": { @@ -13722,16 +12491,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13756,16 +12516,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_analyze": { @@ -13795,16 +12546,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -13832,16 +12574,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/reindex/{index}/_cancel": { @@ -14000,17 +12733,7 @@ "$ref": "#/components/responses/indices.clone-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -14044,17 +12767,7 @@ "$ref": "#/components/responses/indices.clone-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_close": { @@ -14415,16 +13128,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -14903,16 +13607,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -14943,16 +13638,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -15047,16 +13733,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -15087,16 +13764,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -15207,17 +13875,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -15319,17 +13977,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -15466,7 +14114,7 @@ } } }, - "x-state": "Added in 8.19.0" + "x-state": "Generally available; Added in 8.19.0" }, "put": { "tags": [ @@ -15544,7 +14192,7 @@ } } }, - "x-state": "Added in 8.19.0" + "x-state": "Generally available; Added in 8.19.0" }, "delete": { "tags": [ @@ -15614,7 +14262,7 @@ } } }, - "x-state": "Added in 8.19.0" + "x-state": "Generally available; Added in 8.19.0" } }, "/_index_template/{name}": { @@ -15678,17 +14326,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -15719,17 +14357,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -16219,17 +14847,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-time-series-index/_downsample/my-downsampled-time-series-index\n{\n \"fixed_interval\": \"1d\"\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_alias/{name}": { @@ -16372,17 +14990,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_field_usage_stats": { @@ -16464,17 +15072,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_field_usage_stats\n" - } - ] -======= "x-state": "Technical preview; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_flush": { @@ -16810,17 +15408,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _lifecycle/stats?human&pretty\n" - } - ] -======= "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_data_stream": { @@ -16883,16 +15471,7 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET publications/_mapping/field/title\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mapping/field/{fields}": { @@ -16928,16 +15507,7 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET publications/_mapping/field/title\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template": { @@ -17079,16 +15649,7 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -17131,16 +15692,7 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/reindex/{index}/_status": { @@ -17309,16 +15861,7 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings": { @@ -17409,16 +15952,7 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings/{name}": { @@ -17854,16 +16388,7 @@ "$ref": "#/components/responses/indices.recovery-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_recovery?human\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_recovery": { @@ -17890,16 +16415,7 @@ "$ref": "#/components/responses/indices.recovery-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_recovery?human\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_refresh": { @@ -18045,17 +16561,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18089,17 +16595,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/cluster": { @@ -18132,17 +16628,7 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/cluster/{name}": { @@ -18178,17 +16664,7 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_resolve/index/{name}": { @@ -18285,17 +16761,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover": { @@ -18334,17 +16800,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{alias}/_rollover/{new_index}": { @@ -18386,17 +16842,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_segments": { @@ -18483,16 +16929,7 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_shard_stores?status=green\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_shard_stores": { @@ -18525,16 +16962,7 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_shard_stores?status=green\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_shrink/{target}": { @@ -18570,17 +16998,7 @@ "$ref": "#/components/responses/indices.shrink-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18614,17 +17032,7 @@ "$ref": "#/components/responses/indices.shrink-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate_index/{name}": { @@ -18720,17 +17128,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate_index/my-index-000001\n" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate": { @@ -18763,16 +17161,7 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate/{name}": { @@ -18808,16 +17197,7 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_split/{target}": { @@ -18853,17 +17233,7 @@ "$ref": "#/components/responses/indices.split-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -18897,17 +17267,7 @@ "$ref": "#/components/responses/indices.split-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_stats": { @@ -19472,17 +17832,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.18.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.18.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/completion/{inference_id}": { @@ -19572,17 +17922,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{inference_id}": { @@ -19887,17 +18227,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -19983,17 +18313,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -20073,17 +18393,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -20169,17 +18479,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -20265,17 +18565,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -20361,17 +18651,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -20483,17 +18763,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -20583,17 +18853,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -20671,17 +18931,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -20767,17 +19017,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -20855,17 +19095,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -20951,17 +19181,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.18.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.18.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -21038,17 +19258,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -21134,17 +19344,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -21230,17 +19430,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.19.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.19.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -21314,17 +19504,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/rerank/{inference_id}": { @@ -21419,17 +19599,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/sparse_embedding/{inference_id}": { @@ -21519,17 +19689,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/completion/{inference_id}/_stream": { @@ -21603,17 +19763,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/completion/openai-completion/_stream\n{\n \"input\": \"What is Elastic?\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/text_embedding/{inference_id}": { @@ -21703,17 +19853,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_inference/{inference_id}/_update": { @@ -21817,16 +19957,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -22281,17 +20412,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -22514,17 +20635,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22546,17 +20657,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/pipeline/{id}/_simulate": { @@ -22583,17 +20684,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22618,17 +20709,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license": { @@ -22687,16 +20768,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_license\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -22724,16 +20796,7 @@ "$ref": "#/components/responses/license.post-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22761,16 +20824,7 @@ "$ref": "#/components/responses/license.post-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -22852,17 +20906,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_license/basic_status\n" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/trial_status": { @@ -22898,17 +20942,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_license/trial_status\n" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/start_basic": { @@ -23003,17 +21037,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_license/start_basic?acknowledge=true\n" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_license/start_trial": { @@ -23091,17 +21115,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_license/start_trial?acknowledge=true\n" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_logstash/pipeline/{id}": { @@ -23125,17 +21139,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _logstash/pipeline/my_pipeline\n" - } - ] -======= "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -23185,17 +21189,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -23247,17 +21241,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _logstash/pipeline/my_pipeline\n" - } - ] -======= "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mget": { @@ -23302,17 +21286,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23355,17 +21329,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mget": { @@ -23413,17 +21377,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23469,17 +21423,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/deprecations": { @@ -23495,17 +21439,7 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_migration/deprecations\n" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_migration/deprecations": { @@ -23526,17 +21460,7 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_migration/deprecations\n" - } - ] -======= "x-state": "Generally available; Added in 6.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_migration/system_features": { @@ -23580,17 +21504,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_migration/system_features\n" - } - ] -======= "x-state": "Generally available; Added in 7.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -23634,17 +21548,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_migration/system_features\n" - } - ] -======= "x-state": "Generally available; Added in 7.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/trained_models/{model_id}/deployment/cache/_clear": { @@ -25875,17 +23779,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/_evaluate": { @@ -25988,17 +23882,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/analytics/_explain": { @@ -26017,17 +23901,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -26044,17 +23918,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/data_frame/analytics/{id}/_explain": { @@ -26078,17 +23942,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -26110,17 +23964,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -30135,17 +27979,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -30182,17 +28016,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_msearch/template": { @@ -30234,17 +28058,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -30284,17 +28098,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_mtermvectors": { @@ -30351,16 +28155,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -30415,16 +28210,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mtermvectors": { @@ -30484,16 +28270,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -30551,16 +28328,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/_repositories_metering/{max_archive_version}": { @@ -30856,17 +28624,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/reload_secure_settings": { @@ -30893,17 +28651,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/stats": { @@ -31431,17 +29179,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" - } - ] -======= "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/{id}/{context}": { @@ -31480,16 +29218,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -31526,16 +29255,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -31591,17 +29311,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -31700,17 +29410,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -31797,17 +29497,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/my-ruleset/\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -31886,17 +29576,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -31996,17 +29676,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/?from=0&size=3\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_test": { @@ -32091,17 +29761,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rank_eval": { @@ -32505,17 +30165,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 2.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_reindex/{task_id}/_rethrottle": { @@ -32591,16 +30241,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32617,16 +30258,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_render/template/{id}": { @@ -32650,16 +30282,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -32681,16 +30304,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}": { @@ -32712,17 +30326,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _rollup/job/sensor\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -32818,17 +30422,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _rollup/job/sensor\n{\n \"index_pattern\": \"sensor-*\",\n \"rollup_index\": \"sensor_rollup\",\n \"cron\": \"*/30 * * * * ?\",\n \"page_size\": 1000,\n \"groups\": {\n \"date_histogram\": {\n \"field\": \"timestamp\",\n \"fixed_interval\": \"1h\",\n \"delay\": \"7d\"\n },\n \"terms\": {\n \"fields\": [ \"node\" ]\n }\n },\n \"metrics\": [\n {\n \"field\": \"temperature\",\n \"metrics\": [ \"min\", \"max\", \"sum\" ]\n },\n {\n \"field\": \"voltage\",\n \"metrics\": [ \"avg\" ]\n }\n ]\n}" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -32883,17 +30477,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE _rollup/job/sensor\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job": { @@ -32910,17 +30494,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _rollup/job/sensor\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/data/{id}": { @@ -32942,17 +30516,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _rollup/data/sensor-*\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/data": { @@ -32969,17 +30533,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _rollup/data/sensor-*\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_rollup/data": { @@ -33025,17 +30579,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /sensor_rollup/_rollup/data\n" - } - ] -======= "x-state": "Technical preview; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_rollup_search": { @@ -33066,17 +30610,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33105,17 +30639,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}/_start": { @@ -33166,17 +30690,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _rollup/job/sensor/_start\n" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_rollup/job/{id}/_stop": { @@ -33260,17 +30774,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33287,17 +30791,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" - } - ] -======= "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search": { @@ -33450,16 +30944,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33610,16 +31095,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search": { @@ -33775,16 +31251,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -33938,16 +31405,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}": { @@ -33988,17 +31446,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/search_application/my-app/\n" - } - ] -======= "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -34065,17 +31513,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -34130,17 +31568,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/analytics/my*\n" - } - ] -======= "x-state": "Technical preview; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -34225,17 +31653,7 @@ } }, "deprecated": true, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/analytics/my*\n" - } - ] -======= "x-state": "Technical preview; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application": { @@ -34311,17 +31729,7 @@ } } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/search_application?from=0&size=3&q=app*\n" - } - ] -======= "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/analytics/{collection_name}/event/{event_type}": { @@ -34408,13 +31816,7 @@ } }, "deprecated": true, - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/analytics/my_analytics_collection/event/search_click\n{\n \"session\": {\n \"id\": \"1797ca95-91c9-4e2e-b1bd-9c38e6f386a9\"\n },\n \"user\": {\n \"id\": \"5f26f01a-bbee-4202-9298-81261067abbd\"\n },\n \"search\":{\n \"query\": \"search term\",\n \"results\": {\n \"items\": [\n {\n \"document\": {\n \"id\": \"123\",\n \"index\": \"products\"\n }\n }\n ],\n \"total_results\": 10\n },\n \"sort\": {\n \"name\": \"relevance\"\n },\n \"search_application\": \"website\"\n },\n \"document\":{\n \"id\": \"123\",\n \"index\": \"products\"\n }\n}" - } - ] + "x-state": "Technical preview" } }, "/_application/search_application/{name}/_render_query": { @@ -34479,17 +31881,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/search_application/my-app/_render_query\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\n \"name\": \"title\",\n \"boost\": 5\n },\n {\n \"name\": \"description\",\n \"boost\": 1\n }\n ]\n }\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}/_search": { @@ -34516,17 +31908,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34551,17 +31933,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" - } - ] -======= "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -34621,17 +31993,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34689,17 +32051,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search_shards": { @@ -34738,16 +32090,7 @@ "$ref": "#/components/responses/search_shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search_shards\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34784,16 +32127,7 @@ "$ref": "#/components/responses/search_shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search_shards\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search_shards": { @@ -34835,16 +32169,7 @@ "$ref": "#/components/responses/search_shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search_shards\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -34884,16 +32209,7 @@ "$ref": "#/components/responses/search_shards-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search_shards\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/template": { @@ -34955,17 +32271,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -35025,17 +32331,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search/template": { @@ -35100,17 +32396,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -35173,17 +32459,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/cache/stats": { @@ -35207,17 +32483,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_searchable_snapshots/cache/stats\n" - } - ] -======= "x-state": "Technical preview; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/{node_id}/cache/stats": { @@ -35244,17 +32510,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_searchable_snapshots/cache/stats\n" - } - ] -======= "x-state": "Technical preview; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/cache/clear": { @@ -35443,17 +32699,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_snapshot/my_repository/my_snapshot/_mount?wait_for_completion=true\n{\n \"index\": \"my_docs\",\n \"renamed_index\": \"docs\",\n \"index_settings\": {\n \"index.number_of_replicas\": 0\n },\n \"ignore_index_settings\": [ \"index.refresh_interval\" ]\n}" - } - ] -======= "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_searchable_snapshots/stats": { @@ -35561,17 +32807,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/_activate\n{\n \"grant_type\": \"password\",\n \"username\" : \"jacknich\",\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_authenticate": { @@ -35663,17 +32899,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_authenticate\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role": { @@ -35689,16 +32915,7 @@ "$ref": "#/components/responses/security.get_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -35808,17 +33025,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role\n{\n \"roles\": {\n \"my_admin_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\",\n \"index2\"\n ],\n \"privileges\": [\n \"all\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n },\n \"my_user_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\"\n ],\n \"privileges\": [\n \"read\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -35916,17 +33123,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/role\n{\n \"names\": [\"my_admin_role\", \"my_user_role\"]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/_bulk_update": { @@ -36055,16 +33252,7 @@ "$ref": "#/components/responses/security.change_password-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36089,16 +33277,7 @@ "$ref": "#/components/responses/security.change_password-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_password": { @@ -36122,16 +33301,7 @@ "$ref": "#/components/responses/security.change_password-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36153,16 +33323,7 @@ "$ref": "#/components/responses/security.change_password-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/{ids}/_clear_cache": { @@ -36606,17 +33767,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -36641,17 +33792,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36676,17 +33817,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -36813,17 +33944,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" - } - ] -======= "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/cross_cluster/api_key": { @@ -36914,16 +34035,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/cross_cluster/api_key\n{\n \"name\": \"my-cross-cluster-api-key\",\n \"expiration\": \"1d\", \n \"access\": {\n \"search\": [ \n {\n \"names\": [\"logs*\"]\n }\n ],\n \"replication\": [ \n {\n \"names\": [\"archive*\"]\n }\n ]\n },\n \"metadata\": {\n \"description\": \"phase one\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential/token/{name}": { @@ -36956,16 +34068,7 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -36996,16 +34099,7 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37089,17 +34183,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/service/elastic/fleet-server/credential/token/token42\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential/token": { @@ -37129,16 +34213,7 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/delegate_pki": { @@ -37247,17 +34322,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/privilege/myapp/read\n" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37327,17 +34392,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/privilege/myapp/read\n" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role/{name}": { @@ -37358,16 +34413,7 @@ "$ref": "#/components/responses/security.get_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -37395,16 +34441,7 @@ "$ref": "#/components/responses/security.put_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -37432,16 +34469,7 @@ "$ref": "#/components/responses/security.put_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37500,16 +34528,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role_mapping/{name}": { @@ -37533,17 +34552,7 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role_mapping/mapping1\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -37571,17 +34580,7 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -37609,17 +34608,7 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37681,17 +34670,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/role_mapping/mapping1\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{username}": { @@ -37715,16 +34694,7 @@ "$ref": "#/components/responses/security.get_user-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/jacknich?with_profile_uid=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -37749,16 +34719,7 @@ "$ref": "#/components/responses/security.put_user-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -37783,16 +34744,7 @@ "$ref": "#/components/responses/security.put_user-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -37851,16 +34803,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/user/jacknich\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{username}/_disable": { @@ -38086,17 +35029,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/enroll/kibana\n" - } - ] -======= "x-state": "Generally available; Added in 8.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/enroll/node": { @@ -38223,17 +35156,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/privilege/_builtin\n" - } - ] -======= "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege": { @@ -38252,17 +35175,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/privilege/myapp/read\n" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -38287,17 +35200,7 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -38322,17 +35225,7 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege/{application}": { @@ -38356,17 +35249,7 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/privilege/myapp/read\n" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/role_mapping": { @@ -38385,17 +35268,7 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role_mapping/mapping1\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}": { @@ -38422,17 +35295,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/service/elastic/fleet-server\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}": { @@ -38456,17 +35319,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/service/elastic/fleet-server\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service": { @@ -38485,17 +35338,7 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/service/elastic/fleet-server\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/service/{namespace}/{service}/credential": { @@ -38574,17 +35417,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/service/elastic/fleet-server/credential\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/settings": { @@ -38713,16 +35546,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/settings\n{\n \"security\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-tokens\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-profile\": {\n \"index.auto_expand_replicas\": \"0-all\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oauth2/token": { @@ -38834,17 +35658,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/oauth2/token\n{\n \"grant_type\" : \"client_credentials\"\n}" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -38950,17 +35764,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/oauth2/token\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\"\n}" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user": { @@ -38981,16 +35785,7 @@ "$ref": "#/components/responses/security.get_user-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/jacknich?with_profile_uid=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_privileges": { @@ -39109,17 +35904,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_privileges\n" - } - ] -======= "x-state": "Generally available; Added in 6.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/{uid}": { @@ -39217,17 +36002,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/profile/u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\n" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/grant": { @@ -39320,17 +36095,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/api_key/grant\n{\n \"grant_type\": \"password\",\n \"username\" : \"test_admin\",\n \"password\" : \"x-pack-test-password\",\n \"api_key\" : {\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\",\n \"role_descriptors\": {\n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_has_privileges": { @@ -39352,17 +36117,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39382,17 +36137,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/{user}/_has_privileges": { @@ -39419,17 +36164,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39454,17 +36189,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/_has_privileges": { @@ -39486,17 +36211,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39516,17 +36231,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/authenticate": { @@ -39618,16 +36323,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/oidc/authenticate\n{\n \"redirect_uri\" : \"https://oidc-kibana.elastic.co:5603/api/security/oidc/callback?code=jtI3Ntt8v3_XvcLzCFGq&state=4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"state\" : \"4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"nonce\" : \"WaBPH0KqPVdG5HHdSxPRjfoZbXMCicm5v1OiAj0DUFM\",\n \"realm\" : \"oidc1\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/logout": { @@ -39694,16 +36390,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/oidc/logout\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\",\n \"refresh_token\": \"vLBPvmAB6KvwvJZr27cS\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/oidc/prepare": { @@ -39802,16 +36489,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/oidc/prepare\n{\n \"realm\" : \"oidc1\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/api_key": { @@ -39841,17 +36519,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39879,17 +36547,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/role": { @@ -39908,17 +36566,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -39935,17 +36583,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/_query/user": { @@ -39969,17 +36607,7 @@ "$ref": "#/components/responses/security.query_user-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -40001,17 +36629,7 @@ "$ref": "#/components/responses/security.query_user-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/authenticate": { @@ -40105,17 +36723,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/saml/authenticate\n{\n \"content\" : \"PHNhbWxwOlJlc3BvbnNlIHhtbG5zOnNhbWxwPSJ1cm46b2FzaXM6bmFtZXM6dGM6U0FNTDoyLjA6cHJvdG9jb2wiIHhtbG5zOnNhbWw9InVybjpvYXNpczpuYW1lczp0YzpTQU1MOjIuMD.....\",\n \"ids\" : [\"4fee3b046395c4e751011e97f8900b5273d56685\"]\n}" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/complete_logout": { @@ -40180,17 +36788,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/saml/complete_logout\n{\n \"realm\": \"saml1\",\n \"ids\": [ \"_1c368075e0b3...\" ],\n \"query_string\": \"SAMLResponse=fZHLasMwEEVbfb1bf...&SigAlg=http%3A%2F%2Fwww.w3.org%2F2000%2F09%2Fxmldsig%23rsa-sha1&Signature=CuCmFn%2BLqnaZGZJqK...\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/invalidate": { @@ -40274,17 +36872,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/saml/invalidate\n{\n \"query_string\" : \"SAMLRequest=nZFda4MwFIb%2FiuS%2BmviRpqFaClKQdbvo2g12M2KMraCJ9cRR9utnW4Wyi13sMie873MeznJ1aWrnS3VQGR0j4mLkKC1NUeljjA77zYyhVbIE0dR%2By7fmaHq7U%2BdegXWGpAZ%2B%2F4pR32luBFTAtWgUcCv56%2Fp5y30X87Yz1khTIycdgpUW9kY7WdsC9zxoXTvMvWuVV98YyMnSGH2SYE5pwALBIr9QKiwDGpW0oGVUznGeMyJZKFkQ4jBf5HnhUymjIhzCAL3KNFihbYx8TBYzzGaY7EnIyZwHzCWMfiDnbRIftkSjJr%2BFu0e9v%2B0EgOquRiiZjKpiVFp6j50T4WXoyNJ%2FEWC9fdqc1t%2F1%2B2F3aUpjzhPiXpqMz1%2FHSn4A&SigAlg=http%3A%2F%2Fwww.w3.org%2F2001%2F04%2Fxmldsig-more%23rsa-sha256&Signature=MsAYz2NFdovMG2mXf6TSpu5vlQQyEJAg%2B4KCwBqJTmrb3yGXKUtIgvjqf88eCAK32v3eN8vupjPC8LglYmke1ZnjK0%2FKxzkvSjTVA7mMQe2AQdKbkyC038zzRq%2FYHcjFDE%2Bz0qISwSHZY2NyLePmwU7SexEXnIz37jKC6NMEhus%3D\",\n \"realm\" : \"saml1\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/logout": { @@ -40354,17 +36942,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/saml/logout\n{\n \"token\" : \"46ToAxZVaXVVZTVKOVF5YU04ZFJVUDVSZlV3\",\n \"refresh_token\" : \"mJdXLtmvTUSpoLwMvdBt_w\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/prepare": { @@ -40450,17 +37028,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/saml/prepare\n{\n \"realm\" : \"saml1\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/saml/metadata/{realm_name}": { @@ -40511,17 +37079,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/_suggest": { @@ -40545,17 +37103,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -40577,17 +37125,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/api_key/{id}": { @@ -40675,17 +37213,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/cross_cluster/api_key/{id}": { @@ -40769,16 +37297,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/cross_cluster/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"access\": {\n \"replication\": [\n {\n \"names\": [\"archive\"]\n }\n ]\n },\n \"metadata\": {\n \"application\": \"replication\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/profile/{uid}/_data": { @@ -40811,17 +37330,7 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -40852,17 +37361,7 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 8.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/{node_id}/shutdown": { @@ -40886,17 +37385,7 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -40987,17 +37476,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n{\n \"type\": \"restart\",\n \"reason\": \"Demonstrating how the node shutdown API works\",\n \"allocation_delay\": \"20m\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -41057,17 +37536,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_nodes/shutdown": { @@ -41088,17 +37557,7 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/_simulate": { @@ -41122,17 +37581,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -41154,17 +37603,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ingest/{index}/_simulate": { @@ -41191,17 +37630,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -41226,17 +37655,7 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/policy/{policy_id}": { @@ -41263,17 +37682,7 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _slm/policy/daily-snapshots?human\n" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -41366,17 +37775,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_slm/policy/daily-snapshots\n{\n \"schedule\": \"0 30 1 * * ?\",\n \"name\": \"\",\n \"repository\": \"my_repository\",\n \"config\": {\n \"indices\": [\"data-*\", \"important\"],\n \"ignore_unavailable\": false,\n \"include_global_state\": false\n },\n \"retention\": {\n \"expire_after\": \"30d\",\n \"min_count\": 5,\n \"max_count\": 50\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -41500,17 +37899,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_slm/policy/daily-snapshots/_execute\n" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/_execute_retention": { @@ -41579,17 +37968,7 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _slm/policy/daily-snapshots?human\n" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/stats": { @@ -41687,17 +38066,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_slm/stats\n" - } - ] -======= "x-state": "Generally available; Added in 7.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/status": { @@ -41755,17 +38124,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.6.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _slm/status\n" - } - ] -======= "x-state": "Generally available; Added in 7.6.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/start": { @@ -41816,17 +38175,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.6.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _slm/start\n" - } - ] -======= "x-state": "Generally available; Added in 7.6.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_slm/stop": { @@ -41944,17 +38293,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_snapshot/my_repository/_cleanup\n" - } - ] -======= "x-state": "Generally available; Added in 7.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}": { @@ -42047,17 +38386,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_snapshot/my_repository/source_snapshot/_clone/target_snapshot\n{\n \"indices\": \"index_a,index_b\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}": { @@ -42272,17 +38601,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_snapshot/my_repository/snapshot_*?sort=start_time&from_sort_value=1577833200000\n" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -42316,17 +38635,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -42360,17 +38669,7 @@ "$ref": "#/components/responses/snapshot.create-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -42430,16 +38729,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_snapshot/my_repository/snapshot_2,snapshot_3\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}": { @@ -42465,17 +38755,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_snapshot/my_repository\n" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -42509,17 +38789,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -42553,17 +38823,7 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -42640,17 +38900,7 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_snapshot/my_repository\n" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_analyze": { @@ -42904,17 +39154,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_snapshot/my_repository/_analyze?blob_count=10&max_blob_size=1mb&timeout=120s\n" - } - ] -======= "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_verify_integrity": { @@ -43181,17 +39421,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 0.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_snapshot/my_repository/snapshot_2/_restore?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"rename_pattern\": \"index_(.+)\",\n \"rename_replacement\": \"restored_index_$1\",\n \"include_aliases\": false\n}" - } - ] -======= "x-state": "Generally available; Added in 0.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/_status": { @@ -43215,17 +39445,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _snapshot/my_repository/snapshot_2/_status\n" - } - ] -======= "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_status": { @@ -43252,17 +39472,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _snapshot/my_repository/snapshot_2/_status\n" - } - ] -======= "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/{snapshot}/_status": { @@ -43292,17 +39502,7 @@ "$ref": "#/components/responses/snapshot.status-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _snapshot/my_repository/snapshot_2/_status\n" - } - ] -======= "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_snapshot/{repository}/_verify": { @@ -43428,17 +39628,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/async/delete/{id}": { @@ -43677,17 +39867,7 @@ "$ref": "#/components/responses/sql.query-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43709,17 +39889,7 @@ "$ref": "#/components/responses/sql.query-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_sql/translate": { @@ -43738,17 +39908,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -43765,17 +39925,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" - } - ] -======= "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_ssl/certificates": { @@ -43810,17 +39960,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 6.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_ssl/certificates\n" - } - ] -======= "x-state": "Generally available; Added in 6.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms/{id}": { @@ -43898,17 +40038,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms/my-synonyms-set\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -44079,17 +40209,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms/my-synonyms-set/test-1\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -44175,17 +40295,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -44246,17 +40356,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE _synonyms/my-synonyms-set/test-1\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_synonyms": { @@ -44324,17 +40424,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms\n" - } - ] -======= "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_tasks/_cancel": { @@ -44483,17 +40573,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _tasks?actions=cluster:*\n" - } - ] -======= "x-state": "Technical preview; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_tasks": { @@ -44604,17 +40684,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _tasks?actions=*search&detailed\n" - } - ] -======= "x-state": "Technical preview; Added in 2.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_terms_enum": { @@ -44638,17 +40708,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -44670,17 +40730,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" - } - ] -======= "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors/{id}": { @@ -44740,16 +40790,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -44807,16 +40848,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors": { @@ -44873,16 +40905,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -44937,16 +40960,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_field_structure": { @@ -45186,16 +41200,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _text_structure/find_field_structure?index=test-logs&field=message\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_message_structure": { @@ -45249,16 +41254,7 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -45310,16 +41306,7 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/find_structure": { @@ -45625,17 +41612,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _text_structure/find_structure\n{\"name\": \"Leviathan Wakes\", \"author\": \"James S.A. Corey\", \"release_date\": \"2011-06-02\", \"page_count\": 561}\n{\"name\": \"Hyperion\", \"author\": \"Dan Simmons\", \"release_date\": \"1989-05-26\", \"page_count\": 482}\n{\"name\": \"Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1965-06-01\", \"page_count\": 604}\n{\"name\": \"Dune Messiah\", \"author\": \"Frank Herbert\", \"release_date\": \"1969-10-15\", \"page_count\": 331}\n{\"name\": \"Children of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1976-04-21\", \"page_count\": 408}\n{\"name\": \"God Emperor of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1981-05-28\", \"page_count\": 454}\n{\"name\": \"Consider Phlebas\", \"author\": \"Iain M. Banks\", \"release_date\": \"1987-04-23\", \"page_count\": 471}\n{\"name\": \"Pandora's Star\", \"author\": \"Peter F. Hamilton\", \"release_date\": \"2004-03-02\", \"page_count\": 768}\n{\"name\": \"Revelation Space\", \"author\": \"Alastair Reynolds\", \"release_date\": \"2000-03-15\", \"page_count\": 585}\n{\"name\": \"A Fire Upon the Deep\", \"author\": \"Vernor Vinge\", \"release_date\": \"1992-06-01\", \"page_count\": 613}\n{\"name\": \"Ender's Game\", \"author\": \"Orson Scott Card\", \"release_date\": \"1985-06-01\", \"page_count\": 324}\n{\"name\": \"1984\", \"author\": \"George Orwell\", \"release_date\": \"1985-06-01\", \"page_count\": 328}\n{\"name\": \"Fahrenheit 451\", \"author\": \"Ray Bradbury\", \"release_date\": \"1953-10-15\", \"page_count\": 227}\n{\"name\": \"Brave New World\", \"author\": \"Aldous Huxley\", \"release_date\": \"1932-06-01\", \"page_count\": 268}\n{\"name\": \"Foundation\", \"author\": \"Isaac Asimov\", \"release_date\": \"1951-06-01\", \"page_count\": 224}\n{\"name\": \"The Giver\", \"author\": \"Lois Lowry\", \"release_date\": \"1993-04-26\", \"page_count\": 208}\n{\"name\": \"Slaughterhouse-Five\", \"author\": \"Kurt Vonnegut\", \"release_date\": \"1969-06-01\", \"page_count\": 275}\n{\"name\": \"The Hitchhiker's Guide to the Galaxy\", \"author\": \"Douglas Adams\", \"release_date\": \"1979-10-12\", \"page_count\": 180}\n{\"name\": \"Snow Crash\", \"author\": \"Neal Stephenson\", \"release_date\": \"1992-06-01\", \"page_count\": 470}\n{\"name\": \"Neuromancer\", \"author\": \"William Gibson\", \"release_date\": \"1984-07-01\", \"page_count\": 271}\n{\"name\": \"The Handmaid's Tale\", \"author\": \"Margaret Atwood\", \"release_date\": \"1985-06-01\", \"page_count\": 311}\n{\"name\": \"Starship Troopers\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1959-12-01\", \"page_count\": 335}\n{\"name\": \"The Left Hand of Darkness\", \"author\": \"Ursula K. Le Guin\", \"release_date\": \"1969-06-01\", \"page_count\": 304}\n{\"name\": \"The Moon is a Harsh Mistress\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1966-04-01\", \"page_count\": 288}" - } - ] -======= "x-state": "Generally available; Added in 7.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_text_structure/test_grok_pattern": { @@ -45662,17 +41639,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -45697,17 +41664,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" - } - ] -======= "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}": { @@ -45859,17 +41816,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -46092,17 +42039,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46127,17 +42064,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/_preview": { @@ -46161,17 +42088,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -46193,17 +42110,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}/_reset": { @@ -46638,17 +42545,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/_upgrade": { @@ -46997,16 +42894,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_update_by_query": { @@ -47469,17 +43357,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 2.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available; Added in 2.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_update_by_query/{task_id}/_rethrottle": { @@ -47557,16 +43435,7 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_ack\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -47585,16 +43454,7 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_ack\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{watch_id}/_ack/{action_id}": { @@ -47618,16 +43478,7 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_ack\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -47649,16 +43500,7 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_ack\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{watch_id}/_activate": { @@ -47818,17 +43660,7 @@ } } }, -<<<<<<< HEAD - "x-state": "Added in 5.6.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _watcher/watch/my_watch\n" - } - ] -======= "x-state": "Generally available; Added in 5.6.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -47862,16 +43694,7 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -47905,16 +43728,7 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -47970,16 +43784,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE _watcher/watch/my_watch\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/{id}/_execute": { @@ -48006,16 +43811,7 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -48040,16 +43836,7 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/watch/_execute": { @@ -48073,16 +43860,7 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -48104,16 +43882,7 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/settings": { @@ -48236,16 +44005,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_watcher/settings\n{\n \"index.auto_expand_replicas\": \"0-4\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_query/watches": { @@ -48264,17 +44024,7 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_watcher/_query/watches\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -48291,17 +44041,7 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_watcher/_query/watches\n" - } - ] -======= "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_start": { @@ -48342,16 +44082,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/_start\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/stats": { @@ -48375,17 +44106,7 @@ "$ref": "#/components/responses/watcher.stats-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _watcher/stats\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/stats/{metric}": { @@ -48412,17 +44133,7 @@ "$ref": "#/components/responses/watcher.stats-200" } }, -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _watcher/stats\n" - } - ] -======= "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_watcher/_stop": { @@ -48463,16 +44174,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _watcher/_stop\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_xpack": { @@ -48556,16 +44258,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_xpack\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_xpack/usage": { @@ -48714,16 +44407,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_xpack/usage\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } } }, @@ -72922,7 +68606,7 @@ "$ref": "#/components/schemas/indices._types.DataStreamLifecycleWithRollover" }, "data_stream_options": { - "x-state": "Added in 8.19.0", + "x-state": "Generally available; Added in 8.19.0", "oneOf": [ { "$ref": "#/components/schemas/indices._types.DataStreamOptionsTemplate" @@ -82450,7 +78134,7 @@ "$ref": "#/components/schemas/indices._types.DataStreamLifecycleWithRollover" }, "data_stream_options": { - "x-state": "Added in 8.19.0", + "x-state": "Generally available; Added in 8.19.0", "oneOf": [ { "$ref": "#/components/schemas/indices._types.DataStreamOptionsTemplate" diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index bbaa531733..27d86a2b07 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -78,21 +78,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_async_search/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -189,21 +175,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" - } - ] -======= - "x-state": "Generally available; Added in 7.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_async_search": { @@ -353,21 +325,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_async_search": { @@ -520,21 +478,7 @@ "$ref": "#/components/responses/async_search.submit-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_bulk": { @@ -591,16 +535,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -655,16 +590,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_bulk": { @@ -724,16 +650,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -791,16 +708,7 @@ "$ref": "#/components/responses/bulk-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases": { @@ -830,16 +738,7 @@ "$ref": "#/components/responses/cat.aliases-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/aliases?format=json&v=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/aliases/{name}": { @@ -872,16 +771,7 @@ "$ref": "#/components/responses/cat.aliases-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/aliases?format=json&v=true\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/component_templates": { @@ -911,21 +801,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 5.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/component_templates/{name}": { @@ -958,21 +834,7 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.1.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 5.1.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/count": { @@ -996,16 +858,7 @@ "$ref": "#/components/responses/cat.count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/count/{index}": { @@ -1032,16 +885,7 @@ "$ref": "#/components/responses/cat.count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat": { @@ -1109,16 +953,7 @@ "$ref": "#/components/responses/cat.indices-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/indices/{index}": { @@ -1166,16 +1001,7 @@ "$ref": "#/components/responses/cat.indices-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_cat/ml/data_frame/analytics": { @@ -1208,21 +1034,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1258,21 +1070,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/datafeeds": { @@ -1302,21 +1100,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/datafeeds?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1349,21 +1133,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/datafeeds?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/anomaly_detectors": { @@ -1396,21 +1166,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1446,21 +1202,7 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/trained_models": { @@ -1499,21 +1241,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/trained_models?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/ml/trained_models/{model_id}": { @@ -1555,21 +1283,7 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _cat/ml/trained_models?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/transforms": { @@ -1605,21 +1319,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/transforms?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_cat/transforms/{transform_id}": { @@ -1658,21 +1358,7 @@ "$ref": "#/components/responses/cat.transforms-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_cat/transforms?v=true&format=json\n" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search/scroll": { @@ -1705,16 +1391,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1745,16 +1422,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -1774,16 +1442,7 @@ "$ref": "#/components/responses/clear_scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_search/scroll/{scroll_id}": { @@ -1819,16 +1478,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -1862,16 +1512,7 @@ "$ref": "#/components/responses/scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -1896,16 +1537,7 @@ "$ref": "#/components/responses/clear_scroll-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_pit": { @@ -1971,21 +1603,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_component_template/{name}": { @@ -2046,21 +1664,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -2088,21 +1692,7 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.8.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -2411,21 +2001,7 @@ "$ref": "#/components/responses/connector.put-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -2610,21 +2186,7 @@ "$ref": "#/components/responses/connector.put-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -2962,21 +2524,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -3092,21 +2640,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_configuration": { @@ -3184,21 +2718,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_error": { @@ -3277,21 +2797,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" - } - ] -======= - "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering": { @@ -3375,21 +2881,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -3530,21 +3022,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_name": { @@ -3615,21 +3093,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_native": { @@ -3762,21 +3226,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_scheduling": { @@ -3850,21 +3300,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_service_type": { @@ -3935,21 +3371,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" - } - ] -======= - "x-state": "Beta; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_connector/{connector_id}/_status": { @@ -4020,21 +3442,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" - } - ] -======= - "x-state": "Technical preview; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_count": { @@ -4097,16 +3505,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4167,16 +3566,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_count": { @@ -4242,16 +3632,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4315,16 +3696,7 @@ "$ref": "#/components/responses/count-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_create/{id}": { @@ -4393,21 +3765,7 @@ "$ref": "#/components/responses/create-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -4474,21 +3832,7 @@ "$ref": "#/components/responses/create-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_doc/{id}": { @@ -4652,16 +3996,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index-000001/_doc/0\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -4725,16 +4060,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -4798,16 +4124,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -4938,16 +4255,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /my-index-000001/_doc/1\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -5531,21 +4839,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_scripts/{id}": { @@ -5640,16 +4934,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -5683,16 +4968,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -6175,21 +5451,7 @@ "$ref": "#/components/responses/eql.search-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -6238,21 +5500,7 @@ "$ref": "#/components/responses/eql.search-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_query/queries/{id}": { @@ -6485,16 +5733,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> 09daf2fbd (x-state in fields) } }, "/{index}/_source/{id}": { @@ -6841,16 +6080,7 @@ "$ref": "#/components/responses/explain-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -6911,16 +6141,7 @@ "$ref": "#/components/responses/explain-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_field_caps": { @@ -6965,21 +6186,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -7022,21 +6229,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_field_caps": { @@ -7084,21 +6277,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -7144,21 +6323,7 @@ "$ref": "#/components/responses/field_caps-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_graph/explore": { @@ -7191,16 +6356,7 @@ "$ref": "#/components/responses/graph.explore-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7231,16 +6387,7 @@ "$ref": "#/components/responses/graph.explore-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_doc": { @@ -7303,16 +6450,7 @@ "$ref": "#/components/responses/index-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_block/{block}": { @@ -7434,21 +6572,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_block/write\n" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_analyze": { @@ -7475,16 +6599,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7509,16 +6624,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_analyze": { @@ -7548,16 +6654,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -7585,16 +6682,7 @@ "$ref": "#/components/responses/indices.analyze-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}": { @@ -7834,16 +6922,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8225,16 +7304,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8265,16 +7335,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8369,16 +7430,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -8409,16 +7461,7 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -8510,21 +7553,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -8555,21 +7584,7 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -8826,21 +7841,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_alias": { @@ -8986,21 +7987,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -9102,21 +8089,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_data_stream": { @@ -9213,7 +8186,7 @@ } } }, - "x-state": "Added in 8.19.0" + "x-state": "Generally available" }, "put": { "tags": [ @@ -9291,7 +8264,7 @@ } } }, - "x-state": "Added in 8.19.0" + "x-state": "Generally available" } }, "/_index_template": { @@ -9433,16 +8406,7 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -9485,16 +8449,7 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_settings": { @@ -9579,16 +8534,7 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings": { @@ -9679,16 +8625,7 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_settings/{name}": { @@ -10083,21 +9020,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{alias}/_rollover": { @@ -10136,21 +9059,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{alias}/_rollover/{new_index}": { @@ -10192,21 +9101,7 @@ "$ref": "#/components/responses/indices.rollover-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_index_template/_simulate_index/{name}": { @@ -10302,21 +9197,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.9.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate_index/my-index-000001\n" - } - ] -======= - "x-state": "Generally available; Added in 7.9.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_index_template/_simulate": { @@ -10349,16 +9230,7 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_index_template/_simulate/{name}": { @@ -10394,16 +9266,7 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_aliases": { @@ -10776,21 +9639,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.18.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.18.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/completion/{inference_id}": { @@ -10880,21 +9729,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{inference_id}": { @@ -11199,21 +10034,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -11299,21 +10120,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -11393,21 +10200,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -11493,21 +10286,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -11593,21 +10372,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -11693,21 +10458,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -11819,21 +10570,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.13.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.13.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -11923,21 +10660,7 @@ } }, "deprecated": true, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -12015,21 +10738,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -12115,21 +10824,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -12207,21 +10902,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -12307,21 +10988,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.18.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.18.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -12398,21 +11065,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -12498,21 +11151,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -12598,21 +11237,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.19.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.19.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -12686,21 +11311,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.16.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.16.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/rerank/{inference_id}": { @@ -12795,21 +11406,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/sparse_embedding/{inference_id}": { @@ -12899,21 +11496,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_inference/text_embedding/{inference_id}": { @@ -13003,21 +11586,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.11.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.11.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/": { @@ -13070,16 +11639,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "head": { "tags": [ @@ -13244,21 +11804,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -13403,21 +11949,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13439,21 +11971,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ingest/pipeline/{id}/_simulate": { @@ -13480,21 +11998,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13519,21 +12023,7 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_license": { @@ -13592,16 +12082,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_license\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_logstash/pipeline/{id}": { @@ -13625,21 +12106,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _logstash/pipeline/my_pipeline\n" - } - ] -======= - "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -13689,21 +12156,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -13755,21 +12208,7 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.12.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _logstash/pipeline/my_pipeline\n" - } - ] -======= - "x-state": "Generally available; Added in 7.12.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_mget": { @@ -13814,21 +12253,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13871,21 +12296,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_mget": { @@ -13933,21 +12344,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -13993,21 +12390,7 @@ "$ref": "#/components/responses/mget-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 1.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 1.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -15840,21 +14223,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/data_frame/_evaluate": { @@ -15957,21 +14326,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -18783,21 +17138,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -18834,21 +17175,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_msearch/template": { @@ -18890,21 +17217,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -18944,21 +17257,7 @@ "$ref": "#/components/responses/msearch_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" - } - ] -======= - "x-state": "Generally available; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_mtermvectors": { @@ -19015,16 +17314,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19079,16 +17369,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_mtermvectors": { @@ -19148,16 +17429,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19215,16 +17487,7 @@ "$ref": "#/components/responses/mtermvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_pit": { @@ -19363,21 +17626,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" - } - ] -======= - "x-state": "Generally available; Added in 7.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_scripts/{id}/{context}": { @@ -19416,16 +17665,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -19462,16 +17702,7 @@ "$ref": "#/components/responses/put_script-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -19527,21 +17758,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -19640,21 +17857,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -19741,21 +17944,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/my-ruleset/\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -19834,21 +18023,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -19948,21 +18123,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _query_rules/?from=0&size=3\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_query_rules/{ruleset_id}/_test": { @@ -20047,21 +18208,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_rank_eval": { @@ -20465,21 +18612,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_render/template": { @@ -20498,16 +18631,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20524,16 +18648,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_render/template/{id}": { @@ -20557,16 +18672,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20588,16 +18694,7 @@ "$ref": "#/components/responses/render_search_template-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_scripts/painless/_execute": { @@ -20616,21 +18713,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" - } - ] -======= - "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -20647,21 +18730,7 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" - } - ] -======= - "x-state": "Technical preview; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search": { @@ -20814,16 +18883,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -20974,16 +19034,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_search": { @@ -21139,16 +19190,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -21302,16 +19344,7 @@ "$ref": "#/components/responses/search-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_application/search_application/{name}": { @@ -21352,21 +19385,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/search_application/my-app/\n" - } - ] -======= - "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -21433,21 +19452,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -21502,21 +19507,7 @@ } }, "deprecated": true, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/analytics/my*\n" - } - ] -======= - "x-state": "Technical preview; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -21601,21 +19592,7 @@ } }, "deprecated": true, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/analytics/my*\n" - } - ] -======= - "x-state": "Technical preview; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_application/search_application": { @@ -21691,21 +19668,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _application/search_application?from=0&size=3&q=app*\n" - } - ] -======= - "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_application/search_application/{name}/_search": { @@ -21732,21 +19695,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21771,21 +19720,7 @@ "$ref": "#/components/responses/search_application.search-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-beta": true, - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" - } - ] -======= - "x-state": "Beta; Added in 8.8.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Beta" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -21845,21 +19780,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -21917,21 +19838,7 @@ "$ref": "#/components/responses/search_mvt-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_search/template": { @@ -21993,21 +19900,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22067,21 +19960,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_search/template": { @@ -22146,21 +20025,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22223,21 +20088,7 @@ "$ref": "#/components/responses/search_template-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.0.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_authenticate": { @@ -22329,21 +20180,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 5.5.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_authenticate\n" - } - ] -======= - "x-state": "Generally available; Added in 5.5.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/api_key": { @@ -22471,21 +20308,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" - } - ] -======= - "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -22510,21 +20333,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -22549,21 +20358,7 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -22690,21 +20485,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.7.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.7.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/role/{name}": { @@ -22725,16 +20506,7 @@ "$ref": "#/components/responses/security.get_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "put": { "tags": [ @@ -22762,16 +20534,7 @@ "$ref": "#/components/responses/security.put_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -22799,16 +20562,7 @@ "$ref": "#/components/responses/security.put_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "delete": { "tags": [ @@ -22867,16 +20621,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/privilege/_builtin": { @@ -22928,21 +20673,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/privilege/_builtin\n" - } - ] -======= - "x-state": "Generally available; Added in 7.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/role": { @@ -22958,16 +20689,7 @@ "$ref": "#/components/responses/security.get_role-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/role/my_admin_role\n" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_security/user/_has_privileges": { @@ -22989,21 +20711,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23023,21 +20731,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/user/{user}/_has_privileges": { @@ -23064,21 +20758,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23103,21 +20783,7 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_query/api_key": { @@ -23147,21 +20813,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23189,21 +20841,7 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/_query/role": { @@ -23222,21 +20860,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23253,21 +20877,7 @@ "$ref": "#/components/responses/security.query_role-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.15.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.15.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_security/api_key/{id}": { @@ -23355,21 +20965,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/close": { @@ -23424,21 +21020,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/async/delete/{id}": { @@ -23677,21 +21259,7 @@ "$ref": "#/components/responses/sql.query-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23713,21 +21281,7 @@ "$ref": "#/components/responses/sql.query-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_sql/translate": { @@ -23746,21 +21300,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -23777,21 +21317,7 @@ "$ref": "#/components/responses/sql.translate-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 6.3.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" - } - ] -======= - "x-state": "Generally available; Added in 6.3.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_synonyms/{id}": { @@ -23869,21 +21395,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms/my-synonyms-set\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -24044,21 +21556,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms/my-synonyms-set/test-1\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "put": { "tags": [ @@ -24134,21 +21632,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -24199,21 +21683,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "DELETE _synonyms/my-synonyms-set/test-1\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_synonyms": { @@ -24281,21 +21751,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 8.10.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _synonyms\n" - } - ] -======= - "x-state": "Generally available; Added in 8.10.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_tasks/{task_id}": { @@ -24381,21 +21837,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Technical preview", - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET _tasks?actions=cluster:*\n" - } - ] -======= - "x-state": "Technical preview; Added in 5.0.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Technical preview" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_terms_enum": { @@ -24419,21 +21861,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -24455,21 +21883,7 @@ "$ref": "#/components/responses/terms_enum-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.14.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.14.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_termvectors/{id}": { @@ -24529,16 +21943,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -24596,16 +22001,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_termvectors": { @@ -24662,16 +22058,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) }, "post": { "tags": [ @@ -24726,16 +22113,7 @@ "$ref": "#/components/responses/termvectors-200" } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/_transform/{transform_id}": { @@ -24887,21 +22265,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "delete": { "tags": [ @@ -25124,21 +22488,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -25163,21 +22513,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_transform/_preview": { @@ -25201,21 +22537,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) }, "post": { "tags": [ @@ -25237,21 +22559,7 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/_transform/{transform_id}/_reset": { @@ -25686,21 +22994,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 7.2.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 7.2.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } }, "/{index}/_update/{id}": { @@ -25979,16 +23273,7 @@ } } }, -<<<<<<< HEAD - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" - } - ] -======= "x-state": "Generally available" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) } }, "/{index}/_update_by_query": { @@ -26451,21 +23736,7 @@ } } }, -<<<<<<< HEAD -<<<<<<< HEAD - "x-state": "Added in 2.4.0", - "x-codeSamples": [ - { - "lang": "Console", - "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" - } - ] -======= - "x-state": "Generally available; Added in 2.4.0" ->>>>>>> d9ed256a7 (openapi: adding more info in x-state) -======= "x-state": "Generally available" ->>>>>>> 0c626376e (getting flavor from config to fix serverless output) } } }, @@ -42064,7 +39335,7 @@ "$ref": "#/components/schemas/indices._types.DataStreamLifecycleWithRollover" }, "data_stream_options": { - "x-state": "Added in 8.19.0", + "x-state": "Generally available", "oneOf": [ { "$ref": "#/components/schemas/indices._types.DataStreamOptionsTemplate" @@ -53366,7 +50637,7 @@ "$ref": "#/components/schemas/indices._types.DataStreamLifecycleWithRollover" }, "data_stream_options": { - "x-state": "Added in 8.19.0", + "x-state": "Generally available", "oneOf": [ { "$ref": "#/components/schemas/indices._types.DataStreamOptionsTemplate" From c5599d826226459b9b55659cf5b71c7b8f2041a7 Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Fri, 6 Jun 2025 16:28:13 +0200 Subject: [PATCH 5/6] restore recent changes --- .../clients_schema_to_openapi/src/paths.rs | 4 +- .../pkg/compiler_wasm_lib_bg.wasm | Bin 706091 -> 710116 bytes output/openapi/elasticsearch-openapi.json | 3666 ++++++++++++++--- .../elasticsearch-serverless-openapi.json | 1768 +++++++- 4 files changed, 4724 insertions(+), 714 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index 6593a23f60..6d21eece72 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -290,6 +290,8 @@ pub fn add_endpoint( if !code_samples.is_empty() { extensions.insert("x-codeSamples".to_string(), serde_json::json!(code_samples)); } + let mut ext_availability = crate::availability_as_extensions(&endpoint.availability, flavor); + extensions.append(&mut ext_availability); // Create the operation, it will be repeated if we have several methods let operation = openapiv3::Operation { @@ -314,7 +316,7 @@ pub fn add_endpoint( deprecated: endpoint.deprecation.is_some(), security: None, servers: vec![], - extensions: crate::availability_as_extensions(&endpoint.availability, flavor), + extensions }; diff --git a/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm b/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm index 5e05e41b2a270ab65ae6d4ef4ddcd6f78c5512f0..86a8e552f03032d51e7fa62bd8b4645238c4fc5c 100644 GIT binary patch delta 165354 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 delta 161385 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Πu;Si9 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 diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index c0d63d88dd..ba44d94f7d 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -78,7 +78,13 @@ } } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_async_search/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" + } + ] }, "delete": { "tags": [ @@ -175,7 +181,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" + } + ] } }, "/_async_search": { @@ -325,7 +337,13 @@ "$ref": "#/components/responses/async_search.submit-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" + } + ] } }, "/{index}/_async_search": { @@ -478,7 +496,13 @@ "$ref": "#/components/responses/async_search.submit-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" + } + ] } }, "/_autoscaling/policy/{name}": { @@ -534,7 +558,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_autoscaling/policy/my_autoscaling_policy\n" + } + ] }, "put": { "tags": [ @@ -618,7 +648,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_autoscaling/policy/\n{\n \"roles\": [],\n \"deciders\": {\n \"fixed\": {\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -682,7 +718,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_autoscaling/policy/*\n" + } + ] } }, "/_autoscaling/capacity": { @@ -738,7 +780,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_autoscaling/capacity\n" + } + ] } }, "/_bulk": { @@ -795,7 +843,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] }, "post": { "tags": [ @@ -850,7 +904,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] } }, "/{index}/_bulk": { @@ -910,7 +970,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] }, "post": { "tags": [ @@ -968,7 +1034,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] } }, "/_cat/aliases": { @@ -998,7 +1070,13 @@ "$ref": "#/components/responses/cat.aliases-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/aliases?format=json&v=true\n" + } + ] } }, "/_cat/aliases/{name}": { @@ -1031,7 +1109,13 @@ "$ref": "#/components/responses/cat.aliases-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/aliases?format=json&v=true\n" + } + ] } }, "/_cat/allocation": { @@ -1064,7 +1148,13 @@ "$ref": "#/components/responses/cat.allocation-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/allocation?v=true&format=json\n" + } + ] } }, "/_cat/allocation/{node_id}": { @@ -1100,7 +1190,13 @@ "$ref": "#/components/responses/cat.allocation-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/allocation?v=true&format=json\n" + } + ] } }, "/_cat/component_templates": { @@ -1130,7 +1226,13 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, - "x-state": "Generally available; Added in 5.1.0" + "x-state": "Generally available; Added in 5.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/component_templates/{name}": { @@ -1163,7 +1265,13 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, - "x-state": "Generally available; Added in 5.1.0" + "x-state": "Generally available; Added in 5.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/count": { @@ -1187,7 +1295,13 @@ "$ref": "#/components/responses/cat.count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" + } + ] } }, "/_cat/count/{index}": { @@ -1214,7 +1328,13 @@ "$ref": "#/components/responses/cat.count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" + } + ] } }, "/_cat/fielddata": { @@ -1244,7 +1364,13 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" + } + ] } }, "/_cat/fielddata/{fields}": { @@ -1277,7 +1403,13 @@ "$ref": "#/components/responses/cat.fielddata-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/fielddata?v=true&fields=body&format=json\n" + } + ] } }, "/_cat/health": { @@ -1351,7 +1483,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/health?v=true&format=json\n" + } + ] } }, "/_cat": { @@ -1419,7 +1557,13 @@ "$ref": "#/components/responses/cat.indices-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" + } + ] } }, "/_cat/indices/{index}": { @@ -1467,7 +1611,13 @@ "$ref": "#/components/responses/cat.indices-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" + } + ] } }, "/_cat/master": { @@ -1541,7 +1691,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/master?v=true&format=json\n" + } + ] } }, "/_cat/ml/data_frame/analytics": { @@ -1574,7 +1730,13 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" + } + ] } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1610,7 +1772,13 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" + } + ] } }, "/_cat/ml/datafeeds": { @@ -1640,7 +1808,13 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/datafeeds?v=true&format=json\n" + } + ] } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1673,7 +1847,13 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/datafeeds?v=true&format=json\n" + } + ] } }, "/_cat/ml/anomaly_detectors": { @@ -1706,7 +1886,13 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" + } + ] } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1742,7 +1928,13 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" + } + ] } }, "/_cat/ml/trained_models": { @@ -1781,7 +1973,13 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/trained_models?v=true&format=json\n" + } + ] } }, "/_cat/ml/trained_models/{model_id}": { @@ -1823,7 +2021,13 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/trained_models?v=true&format=json\n" + } + ] } }, "/_cat/nodeattrs": { @@ -1903,7 +2107,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/nodeattrs?v=true&format=json\n" + } + ] } }, "/_cat/nodes": { @@ -2020,7 +2230,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/nodes?v=true&format=json\n" + } + ] } }, "/_cat/pending_tasks": { @@ -2104,7 +2320,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/pending_tasks?v=trueh=insertOrder,timeInQueue,priority,source&format=json\n" + } + ] } }, "/_cat/plugins": { @@ -2188,7 +2410,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/plugins?v=true&s=component&h=name,component,version,description&format=json\n" + } + ] } }, "/_cat/recovery": { @@ -2227,7 +2455,13 @@ "$ref": "#/components/responses/cat.recovery-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/recovery?v=true&format=json\n" + } + ] } }, "/_cat/recovery/{index}": { @@ -2269,7 +2503,13 @@ "$ref": "#/components/responses/cat.recovery-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/recovery?v=true&format=json\n" + } + ] } }, "/_cat/repositories": { @@ -2343,7 +2583,13 @@ } } }, - "x-state": "Generally available; Added in 2.1.0" + "x-state": "Generally available; Added in 2.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/repositories?v=true&format=json\n" + } + ] } }, "/_cat/segments": { @@ -2376,7 +2622,13 @@ "$ref": "#/components/responses/cat.segments-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/segments?v=true&format=json\n" + } + ] } }, "/_cat/segments/{index}": { @@ -2412,7 +2664,13 @@ "$ref": "#/components/responses/cat.segments-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/segments?v=true&format=json\n" + } + ] } }, "/_cat/shards": { @@ -2445,7 +2703,13 @@ "$ref": "#/components/responses/cat.shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/shards?format=json\n" + } + ] } }, "/_cat/shards/{index}": { @@ -2481,7 +2745,13 @@ "$ref": "#/components/responses/cat.shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/shards?format=json\n" + } + ] } }, "/_cat/snapshots": { @@ -2514,7 +2784,13 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, - "x-state": "Generally available; Added in 2.1.0" + "x-state": "Generally available; Added in 2.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" + } + ] } }, "/_cat/snapshots/{repository}": { @@ -2550,7 +2826,13 @@ "$ref": "#/components/responses/cat.snapshots-200" } }, - "x-state": "Generally available; Added in 2.1.0" + "x-state": "Generally available; Added in 2.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/snapshots/repo1?v=true&s=id&format=json\n" + } + ] } }, "/_cat/tasks": { @@ -2680,7 +2962,13 @@ } } }, - "x-state": "Technical preview; Added in 5.0.0" + "x-state": "Technical preview; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/tasks?v=true&format=json\n" + } + ] } }, "/_cat/templates": { @@ -2710,7 +2998,13 @@ "$ref": "#/components/responses/cat.templates-200" } }, - "x-state": "Generally available; Added in 5.2.0" + "x-state": "Generally available; Added in 5.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/templates/{name}": { @@ -2743,7 +3037,13 @@ "$ref": "#/components/responses/cat.templates-200" } }, - "x-state": "Generally available; Added in 5.2.0" + "x-state": "Generally available; Added in 5.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/thread_pool": { @@ -2776,7 +3076,13 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/thread_pool?format=json\n" + } + ] } }, "/_cat/thread_pool/{thread_pool_patterns}": { @@ -2812,7 +3118,13 @@ "$ref": "#/components/responses/cat.thread_pool-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/thread_pool?format=json\n" + } + ] } }, "/_cat/transforms": { @@ -2848,7 +3160,13 @@ "$ref": "#/components/responses/cat.transforms-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/transforms?v=true&format=json\n" + } + ] } }, "/_cat/transforms/{transform_id}": { @@ -2887,7 +3205,13 @@ "$ref": "#/components/responses/cat.transforms-200" } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/transforms?v=true&format=json\n" + } + ] } }, "/_ccr/auto_follow/{name}": { @@ -2914,7 +3238,13 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" + } + ] }, "put": { "tags": [ @@ -3043,7 +3373,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_ccr/auto_follow/my_auto_follow_pattern\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index_patterns\" :\n [\n \"leader_index*\"\n ],\n \"follow_index_pattern\" : \"{{leader_index}}-follower\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" + } + ] }, "delete": { "tags": [ @@ -3096,7 +3432,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_ccr/auto_follow/my_auto_follow_pattern\n" + } + ] } }, "/{index}/_ccr/follow": { @@ -3245,7 +3587,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /follower_index/_ccr/follow?wait_for_active_shards=1\n{\n \"remote_cluster\" : \"remote_cluster\",\n \"leader_index\" : \"leader_index\",\n \"settings\": {\n \"index.number_of_replicas\": 0\n },\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" + } + ] } }, "/{index}/_ccr/info": { @@ -3317,7 +3665,13 @@ } } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /follower_index/_ccr/info\n" + } + ] } }, "/{index}/_ccr/stats": { @@ -3384,7 +3738,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /follower_index/_ccr/stats\n" + } + ] } }, "/{index}/_ccr/forget_follower": { @@ -3477,7 +3837,13 @@ } } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST //_ccr/forget_follower\n{\n \"follower_cluster\" : \"\",\n \"follower_index\" : \"\",\n \"follower_index_uuid\" : \"\",\n \"leader_remote_cluster\" : \"\"\n}" + } + ] } }, "/_ccr/auto_follow": { @@ -3501,7 +3867,13 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern-200" } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_ccr/auto_follow/my_auto_follow_pattern\n" + } + ] } }, "/_ccr/auto_follow/{name}/pause": { @@ -3556,7 +3928,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/pause\n" + } + ] } }, "/{index}/_ccr/pause_follow": { @@ -3608,7 +3986,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /follower_index/_ccr/pause_follow\n" + } + ] } }, "/_ccr/auto_follow/{name}/resume": { @@ -3663,7 +4047,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ccr/auto_follow/my_auto_follow_pattern/resume\n" + } + ] } }, "/{index}/_ccr/resume_follow": { @@ -3765,7 +4155,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /follower_index/_ccr/resume_follow\n{\n \"max_read_request_operation_count\" : 1024,\n \"max_outstanding_read_requests\" : 16,\n \"max_read_request_size\" : \"1024k\",\n \"max_write_request_operation_count\" : 32768,\n \"max_write_request_size\" : \"16k\",\n \"max_outstanding_write_requests\" : 8,\n \"max_write_buffer_count\" : 512,\n \"max_write_buffer_size\" : \"512k\",\n \"max_retry_delay\" : \"10s\",\n \"read_poll_timeout\" : \"30s\"\n}" + } + ] } }, "/_ccr/stats": { @@ -3828,7 +4224,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_ccr/stats\n" + } + ] } }, "/{index}/_ccr/unfollow": { @@ -3883,7 +4285,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /follower_index/_ccr/unfollow\n" + } + ] } }, "/_search/scroll": { @@ -3916,7 +4324,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "post": { "tags": [ @@ -3947,7 +4361,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "delete": { "tags": [ @@ -3967,7 +4387,13 @@ "$ref": "#/components/responses/clear_scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] } }, "/_search/scroll/{scroll_id}": { @@ -4003,7 +4429,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "post": { "tags": [ @@ -4037,7 +4469,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "delete": { "tags": [ @@ -4062,7 +4500,13 @@ "$ref": "#/components/responses/clear_scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] } }, "/_pit": { @@ -4128,7 +4572,13 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" + } + ] } }, "/_cluster/allocation/explain": { @@ -4158,7 +4608,13 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" + } + ] }, "post": { "tags": [ @@ -4186,7 +4642,13 @@ "$ref": "#/components/responses/cluster.allocation_explain-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cluster/allocation/explain\n{\n \"index\": \"my-index-000001\",\n \"shard\": 0,\n \"primary\": false,\n \"current_node\": \"my-node\"\n}" + } + ] } }, "/_component_template/{name}": { @@ -4247,7 +4709,13 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -4275,7 +4743,13 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -4715,7 +5189,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_cluster/settings\n{\n \"persistent\" : {\n \"indices.recovery.max_bytes_per_sec\" : \"50mb\"\n }\n}" + } + ] } }, "/_cluster/health": { @@ -4766,7 +5246,13 @@ "$ref": "#/components/responses/cluster.health-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cluster/health\n" + } + ] } }, "/_cluster/health/{index}": { @@ -4820,7 +5306,13 @@ "$ref": "#/components/responses/cluster.health-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cluster/health\n" + } + ] } }, "/_info/{target}": { @@ -5091,7 +5583,13 @@ } } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_cluster/reroute?metric=none\n{\n \"commands\": [\n {\n \"move\": {\n \"index\": \"test\", \"shard\": 0,\n \"from_node\": \"node1\", \"to_node\": \"node2\"\n }\n },\n {\n \"allocate_replica\": {\n \"index\": \"test\", \"shard\": 1,\n \"node\": \"node3\"\n }\n }\n ]\n}" + } + ] } }, "/_cluster/state": { @@ -5393,7 +5891,13 @@ "$ref": "#/components/responses/connector.put-200" } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" + } + ] }, "delete": { "tags": [ @@ -5578,7 +6082,13 @@ "$ref": "#/components/responses/connector.put-200" } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" + } + ] }, "post": { "tags": [ @@ -5913,7 +6423,13 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/_sync_job/my-connector-sync-job/_error\n{\n \"error\": \"some-error\"\n}" + } + ] } }, "/_connector/_sync_job": { @@ -6071,7 +6587,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" + } + ] } }, "/_connector/_sync_job/{connector_sync_job_id}/_stats": { @@ -6262,7 +6784,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" + } + ] } }, "/_connector/{connector_id}/_configuration": { @@ -6340,7 +6868,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" + } + ] } }, "/_connector/{connector_id}/_error": { @@ -6419,7 +6953,13 @@ } } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" + } + ] } }, "/_connector/{connector_id}/_features": { @@ -6494,7 +7034,13 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_features\n{\n \"features\": {\n \"document_level_security\": {\n \"enabled\": true\n },\n \"incremental_sync\": {\n \"enabled\": true\n },\n \"sync_rules\": {\n \"advanced\": {\n \"enabled\": false\n },\n \"basic\": {\n \"enabled\": true\n }\n }\n }\n}" + } + ] } }, "/_connector/{connector_id}/_filtering": { @@ -6578,7 +7124,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" + } + ] } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -6719,7 +7271,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" + } + ] } }, "/_connector/{connector_id}/_name": { @@ -6790,7 +7348,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" + } + ] } }, "/_connector/{connector_id}/_native": { @@ -6923,7 +7487,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" + } + ] } }, "/_connector/{connector_id}/_scheduling": { @@ -6997,7 +7567,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" + } + ] } }, "/_connector/{connector_id}/_service_type": { @@ -7068,7 +7644,13 @@ } } }, - "x-state": "Beta; Added in 8.12.0" + "x-state": "Beta; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" + } + ] } }, "/_connector/{connector_id}/_status": { @@ -7139,7 +7721,13 @@ } } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" + } + ] } }, "/_count": { @@ -7202,7 +7790,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -7263,7 +7857,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] } }, "/{index}/_count": { @@ -7329,7 +7929,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -7393,7 +7999,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] } }, "/{index}/_create/{id}": { @@ -7462,7 +8074,13 @@ "$ref": "#/components/responses/create-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -7529,7 +8147,13 @@ "$ref": "#/components/responses/create-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] } }, "/_dangling/{index_uuid}": { @@ -7602,7 +8226,13 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_dangling/zmM4e0JtBkeUjiHD-MihPQ?accept_data_loss=true\n" + } + ] }, "delete": { "tags": [ @@ -7870,7 +8500,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index-000001/_doc/0\n" + } + ] }, "put": { "tags": [ @@ -7934,7 +8570,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -7998,7 +8640,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -8129,7 +8777,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /my-index-000001/_doc/1\n" + } + ] }, "head": { "tags": [ @@ -8713,7 +9367,13 @@ } } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" + } + ] } }, "/_delete_by_query/{task_id}/_rethrottle": { @@ -8854,7 +9514,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -8888,7 +9554,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -9434,7 +10106,13 @@ "$ref": "#/components/responses/eql.search-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" + } + ] }, "post": { "tags": [ @@ -9483,7 +10161,13 @@ "$ref": "#/components/responses/eql.search-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" + } + ] } }, "/_query/async": { @@ -9643,7 +10327,13 @@ } } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_query/async\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"wait_for_completion_timeout\": \"2s\",\n \"include_ccs_metadata\": true\n}" + } + ] } }, "/_query/async/{id}": { @@ -10031,7 +10721,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" + } + ] } }, "/{index}/_source/{id}": { @@ -10378,7 +11074,13 @@ "$ref": "#/components/responses/explain-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -10439,7 +11141,13 @@ "$ref": "#/components/responses/explain-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" + } + ] } }, "/_features": { @@ -10591,7 +11299,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -10634,55 +11348,67 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available; Added in 5.4.0" - } - }, - "/{index}/_field_caps": { - "get": { - "tags": [ - "search" - ], - "summary": "Get the field capabilities", - "description": "Get information about the capabilities of fields among multiple indices.\n\nFor data streams, the API returns field capabilities among the stream’s backing indices.\nIt returns runtime fields like any other field.\nFor example, a runtime field with a type of keyword is returned the same as any other field that belongs to the `keyword` family.", - "operationId": "field-caps-2", - "parameters": [ - { - "$ref": "#/components/parameters/field_caps-index" - }, - { - "$ref": "#/components/parameters/field_caps-allow_no_indices" - }, - { - "$ref": "#/components/parameters/field_caps-expand_wildcards" - }, - { - "$ref": "#/components/parameters/field_caps-fields" - }, - { - "$ref": "#/components/parameters/field_caps-ignore_unavailable" - }, - { - "$ref": "#/components/parameters/field_caps-include_unmapped" - }, - { - "$ref": "#/components/parameters/field_caps-filters" - }, + "x-state": "Generally available; Added in 5.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] + } + }, + "/{index}/_field_caps": { + "get": { + "tags": [ + "search" + ], + "summary": "Get the field capabilities", + "description": "Get information about the capabilities of fields among multiple indices.\n\nFor data streams, the API returns field capabilities among the stream’s backing indices.\nIt returns runtime fields like any other field.\nFor example, a runtime field with a type of keyword is returned the same as any other field that belongs to the `keyword` family.", + "operationId": "field-caps-2", + "parameters": [ + { + "$ref": "#/components/parameters/field_caps-index" + }, + { + "$ref": "#/components/parameters/field_caps-allow_no_indices" + }, + { + "$ref": "#/components/parameters/field_caps-expand_wildcards" + }, + { + "$ref": "#/components/parameters/field_caps-fields" + }, + { + "$ref": "#/components/parameters/field_caps-ignore_unavailable" + }, + { + "$ref": "#/components/parameters/field_caps-include_unmapped" + }, + { + "$ref": "#/components/parameters/field_caps-filters" + }, + { + "$ref": "#/components/parameters/field_caps-types" + }, + { + "$ref": "#/components/parameters/field_caps-include_empty_fields" + } + ], + "requestBody": { + "$ref": "#/components/requestBodies/field_caps" + }, + "responses": { + "200": { + "$ref": "#/components/responses/field_caps-200" + } + }, + "x-state": "Generally available; Added in 5.4.0", + "x-codeSamples": [ { - "$ref": "#/components/parameters/field_caps-types" - }, - { - "$ref": "#/components/parameters/field_caps-include_empty_fields" - } - ], - "requestBody": { - "$ref": "#/components/requestBodies/field_caps" - }, - "responses": { - "200": { - "$ref": "#/components/responses/field_caps-200" + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" } - }, - "x-state": "Generally available; Added in 5.4.0" + ] }, "post": { "tags": [ @@ -10728,7 +11454,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available; Added in 5.4.0" + "x-state": "Generally available; Added in 5.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] } }, "/{index}/_fleet/global_checkpoints": { @@ -11483,7 +12215,13 @@ "$ref": "#/components/responses/graph.explore-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" + } + ] }, "post": { "tags": [ @@ -11514,7 +12252,13 @@ "$ref": "#/components/responses/graph.explore-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" + } + ] } }, "/_health_report": { @@ -11680,7 +12424,13 @@ } } }, - "x-state": "Generally available; Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _ilm/policy/my_policy\n{\n \"policy\": {\n \"_meta\": {\n \"description\": \"used for nginx log\",\n \"project\": {\n \"name\": \"myProject\",\n \"department\": \"myDepartment\"\n }\n },\n \"phases\": {\n \"warm\": {\n \"min_age\": \"10d\",\n \"actions\": {\n \"forcemerge\": {\n \"max_num_segments\": 1\n }\n }\n },\n \"delete\": {\n \"min_age\": \"30d\",\n \"actions\": {\n \"delete\": {}\n }\n }\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -12009,7 +12759,13 @@ } } }, - "x-state": "Generally available; Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ilm/migrate_to_data_tiers\n{\n \"legacy_template_to_delete\": \"global-template\",\n \"node_attribute\": \"custom_attribute_name\"\n}" + } + ] } }, "/_ilm/move/{index}": { @@ -12084,7 +12840,13 @@ } } }, - "x-state": "Generally available; Added in 6.6.0" + "x-state": "Generally available; Added in 6.6.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ilm/move/my-index-000001\n{\n \"current_step\": {\n \"phase\": \"new\",\n \"action\": \"complete\",\n \"name\": \"complete\"\n },\n \"next_step\": {\n \"phase\": \"warm\",\n \"action\": \"forcemerge\",\n \"name\": \"forcemerge\"\n }\n}" + } + ] } }, "/{index}/_ilm/remove": { @@ -12342,7 +13104,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] } }, "/{index}/_block/{block}": { @@ -12464,7 +13232,13 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_block/write\n" + } + ] } }, "/_analyze": { @@ -12491,7 +13265,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] }, "post": { "tags": [ @@ -12516,7 +13296,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] } }, "/{index}/_analyze": { @@ -12546,7 +13332,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] }, "post": { "tags": [ @@ -12574,7 +13366,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] } }, "/_migration/reindex/{index}/_cancel": { @@ -12733,7 +13531,13 @@ "$ref": "#/components/responses/indices.clone-200" } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" + } + ] }, "post": { "tags": [ @@ -12767,7 +13571,13 @@ "$ref": "#/components/responses/indices.clone-200" } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my_source_index/_clone/my_target_index\n{\n \"settings\": {\n \"index.number_of_shards\": 5\n },\n \"aliases\": {\n \"my_search_indices\": {}\n }\n}" + } + ] } }, "/{index}/_close": { @@ -13128,7 +13938,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" + } + ] }, "delete": { "tags": [ @@ -13607,7 +14423,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -13638,7 +14460,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -13733,7 +14561,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -13764,7 +14598,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -13875,7 +14715,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" + } + ] }, "put": { "tags": [ @@ -13977,7 +14823,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" + } + ] }, "delete": { "tags": [ @@ -14326,7 +15178,13 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -14357,7 +15215,13 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -14847,7 +15711,13 @@ } } }, - "x-state": "Technical preview; Added in 8.5.0" + "x-state": "Technical preview; Added in 8.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-time-series-index/_downsample/my-downsampled-time-series-index\n{\n \"fixed_interval\": \"1d\"\n}" + } + ] } }, "/_alias/{name}": { @@ -14990,7 +15860,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" + } + ] } }, "/{index}/_field_usage_stats": { @@ -15072,7 +15948,13 @@ } } }, - "x-state": "Technical preview; Added in 7.15.0" + "x-state": "Technical preview; Added in 7.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_field_usage_stats\n" + } + ] } }, "/_flush": { @@ -15408,7 +16290,13 @@ } } }, - "x-state": "Generally available; Added in 8.12.0" + "x-state": "Generally available; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _lifecycle/stats?human&pretty\n" + } + ] } }, "/_data_stream": { @@ -15471,7 +16359,13 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET publications/_mapping/field/title\n" + } + ] } }, "/{index}/_mapping/field/{fields}": { @@ -15507,7 +16401,13 @@ "$ref": "#/components/responses/indices.get_field_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET publications/_mapping/field/title\n" + } + ] } }, "/_index_template": { @@ -15649,7 +16549,13 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -15692,7 +16598,13 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" + } + ] } }, "/_migration/reindex/{index}/_status": { @@ -15861,7 +16773,13 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" + } + ] } }, "/{index}/_settings": { @@ -15952,7 +16870,13 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" + } + ] } }, "/{index}/_settings/{name}": { @@ -16388,7 +17312,13 @@ "$ref": "#/components/responses/indices.recovery-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_recovery?human\n" + } + ] } }, "/{index}/_recovery": { @@ -16415,7 +17345,13 @@ "$ref": "#/components/responses/indices.recovery-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_recovery?human\n" + } + ] } }, "/_refresh": { @@ -16561,7 +17497,13 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -16595,7 +17537,13 @@ "$ref": "#/components/responses/indices.reload_search_analyzers-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_reload_search_analyzers\n{\n \"_shards\": {\n \"total\": 2,\n \"successful\": 2,\n \"failed\": 0\n },\n \"reload_details\": [\n {\n \"index\": \"my-index-000001\",\n \"reloaded_analyzers\": [\n \"my_synonyms\"\n ],\n \"reloaded_node_ids\": [\n \"mfdqTXn_T7SGr2Ho2KT8uw\"\n ]\n }\n ]\n}" + } + ] } }, "/_resolve/cluster": { @@ -16628,7 +17576,13 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" + } + ] } }, "/_resolve/cluster/{name}": { @@ -16664,7 +17618,13 @@ "$ref": "#/components/responses/indices.resolve_cluster-200" } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_resolve/cluster/my-index*,clust*:my-index*\n" + } + ] } }, "/_resolve/index/{name}": { @@ -16761,7 +17721,13 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" + } + ] } }, "/{alias}/_rollover": { @@ -16800,7 +17766,13 @@ "$ref": "#/components/responses/indices.rollover-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" + } + ] } }, "/{alias}/_rollover/{new_index}": { @@ -16842,7 +17814,13 @@ "$ref": "#/components/responses/indices.rollover-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" + } + ] } }, "/_segments": { @@ -16929,7 +17907,13 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_shard_stores?status=green\n" + } + ] } }, "/{index}/_shard_stores": { @@ -16962,7 +17946,13 @@ "$ref": "#/components/responses/indices.shard_stores-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_shard_stores?status=green\n" + } + ] } }, "/{index}/_shrink/{target}": { @@ -16998,7 +17988,13 @@ "$ref": "#/components/responses/indices.shrink-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" + } + ] }, "post": { "tags": [ @@ -17032,7 +18028,13 @@ "$ref": "#/components/responses/indices.shrink-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my_source_index/_shrink/my_target_index\n{\n \"settings\": {\n \"index.routing.allocation.require._name\": null,\n \"index.blocks.write\": null\n }\n}" + } + ] } }, "/_index_template/_simulate_index/{name}": { @@ -17128,7 +18130,13 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate_index/my-index-000001\n" + } + ] } }, "/_index_template/_simulate": { @@ -17161,7 +18169,13 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" + } + ] } }, "/_index_template/_simulate/{name}": { @@ -17197,7 +18211,13 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" + } + ] } }, "/{index}/_split/{target}": { @@ -17233,7 +18253,13 @@ "$ref": "#/components/responses/indices.split-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" + } + ] }, "post": { "tags": [ @@ -17267,7 +18293,13 @@ "$ref": "#/components/responses/indices.split-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_split/split-my-index-000001\n{\n \"settings\": {\n \"index.number_of_shards\": 2\n }\n}" + } + ] } }, "/_stats": { @@ -17832,7 +18864,13 @@ } } }, - "x-state": "Generally available; Added in 8.18.0" + "x-state": "Generally available; Added in 8.18.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" + } + ] } }, "/_inference/completion/{inference_id}": { @@ -17922,7 +18960,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" + } + ] } }, "/_inference/{inference_id}": { @@ -18227,7 +19271,13 @@ } } }, - "x-state": "Generally available; Added in 8.16.0" + "x-state": "Generally available; Added in 8.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -18313,7 +19363,13 @@ } } }, - "x-state": "Generally available; Added in 8.12.0" + "x-state": "Generally available; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -18393,7 +19449,13 @@ } } }, - "x-state": "Generally available; Added in 8.16.0" + "x-state": "Generally available; Added in 8.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" + } + ] } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -18479,7 +19541,13 @@ } } }, - "x-state": "Generally available; Added in 8.14.0" + "x-state": "Generally available; Added in 8.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -18565,7 +19633,13 @@ } } }, - "x-state": "Generally available; Added in 8.14.0" + "x-state": "Generally available; Added in 8.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -18651,7 +19725,13 @@ } } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -18763,7 +19843,13 @@ } } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -18853,7 +19939,13 @@ } }, "deprecated": true, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" + } + ] } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -18931,7 +20023,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -19017,7 +20115,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -19095,7 +20199,13 @@ } } }, - "x-state": "Generally available; Added in 8.12.0" + "x-state": "Generally available; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -19181,7 +20291,13 @@ } } }, - "x-state": "Generally available; Added in 8.18.0" + "x-state": "Generally available; Added in 8.18.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -19258,7 +20374,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -19344,7 +20466,13 @@ } } }, - "x-state": "Generally available; Added in 8.12.0" + "x-state": "Generally available; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" + } + ] } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -19430,7 +20558,13 @@ } } }, - "x-state": "Generally available; Added in 8.19.0" + "x-state": "Generally available; Added in 8.19.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" + } + ] } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -19504,7 +20638,13 @@ } } }, - "x-state": "Generally available; Added in 8.16.0" + "x-state": "Generally available; Added in 8.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" + } + ] } }, "/_inference/rerank/{inference_id}": { @@ -19599,7 +20739,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" + } + ] } }, "/_inference/sparse_embedding/{inference_id}": { @@ -19689,7 +20835,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" + } + ] } }, "/_inference/completion/{inference_id}/_stream": { @@ -19763,7 +20915,13 @@ } } }, - "x-state": "Generally available; Added in 8.16.0" + "x-state": "Generally available; Added in 8.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/completion/openai-completion/_stream\n{\n \"input\": \"What is Elastic?\"\n}" + } + ] } }, "/_inference/text_embedding/{inference_id}": { @@ -19853,7 +21011,13 @@ } } }, - "x-state": "Generally available; Added in 8.11.0" + "x-state": "Generally available; Added in 8.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" + } + ] } }, "/_inference/{inference_id}/_update": { @@ -19957,7 +21121,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /\n" + } + ] }, "head": { "tags": [ @@ -20412,7 +21582,13 @@ } } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -20635,7 +21811,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -20657,7 +21839,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_ingest/pipeline/{id}/_simulate": { @@ -20684,7 +21872,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -20709,7 +21903,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_license": { @@ -20768,7 +21968,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_license\n" + } + ] }, "put": { "tags": [ @@ -20796,7 +22002,13 @@ "$ref": "#/components/responses/license.post-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -20824,7 +22036,13 @@ "$ref": "#/components/responses/license.post-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _license\n{\n \"licenses\": [\n {\n \"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4xx\",\n \"type\":\"basic\",\n \"issue_date_in_millis\":1411948800000,\n \"expiry_date_in_millis\":1914278399999,\n \"max_nodes\":1,\n \"issued_to\":\"issuedTo\",\n \"issuer\":\"issuer\",\n \"signature\":\"xx\"\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -20906,7 +22124,13 @@ } } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_license/basic_status\n" + } + ] } }, "/_license/trial_status": { @@ -20942,7 +22166,13 @@ } } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_license/trial_status\n" + } + ] } }, "/_license/start_basic": { @@ -21037,7 +22267,13 @@ } } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_license/start_basic?acknowledge=true\n" + } + ] } }, "/_license/start_trial": { @@ -21115,7 +22351,13 @@ } } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_license/start_trial?acknowledge=true\n" + } + ] } }, "/_logstash/pipeline/{id}": { @@ -21139,7 +22381,13 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, - "x-state": "Generally available; Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _logstash/pipeline/my_pipeline\n" + } + ] }, "put": { "tags": [ @@ -21189,7 +22437,13 @@ } } }, - "x-state": "Generally available; Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" + } + ] }, "delete": { "tags": [ @@ -21241,7 +22495,13 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, - "x-state": "Generally available; Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _logstash/pipeline/my_pipeline\n" + } + ] } }, "/_mget": { @@ -21286,7 +22546,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -21329,7 +22595,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] } }, "/{index}/_mget": { @@ -21377,7 +22649,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -21423,7 +22701,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available; Added in 1.3.0" + "x-state": "Generally available; Added in 1.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] } }, "/_migration/deprecations": { @@ -21439,7 +22723,13 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_migration/deprecations\n" + } + ] } }, "/{index}/_migration/deprecations": { @@ -21460,7 +22750,13 @@ "$ref": "#/components/responses/migration.deprecations-200" } }, - "x-state": "Generally available; Added in 6.1.0" + "x-state": "Generally available; Added in 6.1.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_migration/deprecations\n" + } + ] } }, "/_migration/system_features": { @@ -21504,7 +22800,13 @@ } } }, - "x-state": "Generally available; Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_migration/system_features\n" + } + ] }, "post": { "tags": [ @@ -21548,7 +22850,13 @@ } } }, - "x-state": "Generally available; Added in 7.16.0" + "x-state": "Generally available; Added in 7.16.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_migration/system_features\n" + } + ] } }, "/_ml/trained_models/{model_id}/deployment/cache/_clear": { @@ -23779,7 +25087,13 @@ } } }, - "x-state": "Generally available; Added in 7.7.0" + "x-state": "Generally available; Added in 7.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" + } + ] } }, "/_ml/data_frame/_evaluate": { @@ -23882,7 +25196,13 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" + } + ] } }, "/_ml/data_frame/analytics/_explain": { @@ -23901,7 +25221,13 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -23918,7 +25244,13 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" + } + ] } }, "/_ml/data_frame/analytics/{id}/_explain": { @@ -23942,7 +25274,13 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -23964,7 +25302,13 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics-200" } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/analytics/_explain\n{\n \"source\": {\n \"index\": \"houses_sold_last_10_yrs\"\n },\n \"analysis\": {\n \"regression\": {\n \"dependent_variable\": \"price\"\n }\n }\n}" + } + ] } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -27979,7 +29323,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] }, "post": { "tags": [ @@ -28016,7 +29366,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] } }, "/{index}/_msearch/template": { @@ -28058,7 +29414,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] }, "post": { "tags": [ @@ -28098,7 +29460,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available; Added in 5.0.0" + "x-state": "Generally available; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] } }, "/_mtermvectors": { @@ -28155,7 +29523,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -28210,7 +29584,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] } }, "/{index}/_mtermvectors": { @@ -28270,7 +29650,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -28328,7 +29714,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] } }, "/_nodes/{node_id}/_repositories_metering/{max_archive_version}": { @@ -28624,7 +30016,13 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" + } + ] } }, "/_nodes/{node_id}/reload_secure_settings": { @@ -28651,7 +30049,13 @@ "$ref": "#/components/responses/nodes.reload_secure_settings-200" } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _nodes/reload_secure_settings\n{\n \"secure_settings_password\": \"keystore-password\"\n}" + } + ] } }, "/_nodes/stats": { @@ -29179,7 +30583,13 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" + } + ] } }, "/_scripts/{id}/{context}": { @@ -29218,7 +30628,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -29255,7 +30671,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -29311,7 +30733,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" + } + ] }, "put": { "tags": [ @@ -29410,7 +30838,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -29497,7 +30931,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/my-ruleset/\n" + } + ] }, "put": { "tags": [ @@ -29576,7 +31016,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -29676,7 +31122,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/?from=0&size=3\n" + } + ] } }, "/_query_rules/{ruleset_id}/_test": { @@ -29761,7 +31213,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" + } + ] } }, "/_rank_eval": { @@ -30165,7 +31623,13 @@ } } }, - "x-state": "Generally available; Added in 2.3.0" + "x-state": "Generally available; Added in 2.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" + } + ] } }, "/_reindex/{task_id}/_rethrottle": { @@ -30241,7 +31705,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -30258,7 +31728,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] } }, "/_render/template/{id}": { @@ -30282,7 +31758,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -30304,7 +31786,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] } }, "/_rollup/job/{id}": { @@ -30326,7 +31814,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _rollup/job/sensor\n" + } + ] }, "put": { "tags": [ @@ -30422,7 +31916,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _rollup/job/sensor\n{\n \"index_pattern\": \"sensor-*\",\n \"rollup_index\": \"sensor_rollup\",\n \"cron\": \"*/30 * * * * ?\",\n \"page_size\": 1000,\n \"groups\": {\n \"date_histogram\": {\n \"field\": \"timestamp\",\n \"fixed_interval\": \"1h\",\n \"delay\": \"7d\"\n },\n \"terms\": {\n \"fields\": [ \"node\" ]\n }\n },\n \"metrics\": [\n {\n \"field\": \"temperature\",\n \"metrics\": [ \"min\", \"max\", \"sum\" ]\n },\n {\n \"field\": \"voltage\",\n \"metrics\": [ \"avg\" ]\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -30477,7 +31977,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE _rollup/job/sensor\n" + } + ] } }, "/_rollup/job": { @@ -30494,7 +32000,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _rollup/job/sensor\n" + } + ] } }, "/_rollup/data/{id}": { @@ -30516,7 +32028,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _rollup/data/sensor-*\n" + } + ] } }, "/_rollup/data": { @@ -30533,7 +32051,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _rollup/data/sensor-*\n" + } + ] } }, "/{index}/_rollup/data": { @@ -30579,7 +32103,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.4.0" + "x-state": "Technical preview; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /sensor_rollup/_rollup/data\n" + } + ] } }, "/{index}/_rollup_search": { @@ -30610,7 +32140,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -30639,7 +32175,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /sensor_rollup/_rollup_search\n{\n \"size\": 0,\n \"aggregations\": {\n \"max_temperature\": {\n \"max\": {\n \"field\": \"temperature\"\n }\n }\n }\n}" + } + ] } }, "/_rollup/job/{id}/_start": { @@ -30690,7 +32232,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _rollup/job/sensor/_start\n" + } + ] } }, "/_rollup/job/{id}/_stop": { @@ -30774,7 +32322,13 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -30791,7 +32345,13 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, - "x-state": "Technical preview; Added in 6.3.0" + "x-state": "Technical preview; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" + } + ] } }, "/_search": { @@ -30944,7 +32504,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -31095,7 +32661,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } }, "/{index}/_search": { @@ -31251,7 +32823,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -31405,7 +32983,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } }, "/_application/search_application/{name}": { @@ -31446,7 +33030,13 @@ } } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/search_application/my-app/\n" + } + ] }, "put": { "tags": [ @@ -31513,7 +33103,13 @@ } } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -31568,7 +33164,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 8.8.0" + "x-state": "Technical preview; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/analytics/my*\n" + } + ] }, "put": { "tags": [ @@ -31653,7 +33255,13 @@ } }, "deprecated": true, - "x-state": "Technical preview; Added in 8.8.0" + "x-state": "Technical preview; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/analytics/my*\n" + } + ] } }, "/_application/search_application": { @@ -31729,7 +33337,13 @@ } } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/search_application?from=0&size=3&q=app*\n" + } + ] } }, "/_application/analytics/{collection_name}/event/{event_type}": { @@ -31816,7 +33430,13 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/analytics/my_analytics_collection/event/search_click\n{\n \"session\": {\n \"id\": \"1797ca95-91c9-4e2e-b1bd-9c38e6f386a9\"\n },\n \"user\": {\n \"id\": \"5f26f01a-bbee-4202-9298-81261067abbd\"\n },\n \"search\":{\n \"query\": \"search term\",\n \"results\": {\n \"items\": [\n {\n \"document\": {\n \"id\": \"123\",\n \"index\": \"products\"\n }\n }\n ],\n \"total_results\": 10\n },\n \"sort\": {\n \"name\": \"relevance\"\n },\n \"search_application\": \"website\"\n },\n \"document\":{\n \"id\": \"123\",\n \"index\": \"products\"\n }\n}" + } + ] } }, "/_application/search_application/{name}/_render_query": { @@ -31881,7 +33501,13 @@ } } }, - "x-state": "Technical preview; Added in 8.9.0" + "x-state": "Technical preview; Added in 8.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/search_application/my-app/_render_query\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\n \"name\": \"title\",\n \"boost\": 5\n },\n {\n \"name\": \"description\",\n \"boost\": 1\n }\n ]\n }\n}" + } + ] } }, "/_application/search_application/{name}/_search": { @@ -31908,7 +33534,13 @@ "$ref": "#/components/responses/search_application.search-200" } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" + } + ] }, "post": { "tags": [ @@ -31933,7 +33565,13 @@ "$ref": "#/components/responses/search_application.search-200" } }, - "x-state": "Beta; Added in 8.8.0" + "x-state": "Beta; Added in 8.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" + } + ] } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -31993,7 +33631,13 @@ "$ref": "#/components/responses/search_mvt-200" } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -32051,7 +33695,13 @@ "$ref": "#/components/responses/search_mvt-200" } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" + } + ] } }, "/_search_shards": { @@ -32090,7 +33740,13 @@ "$ref": "#/components/responses/search_shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search_shards\n" + } + ] }, "post": { "tags": [ @@ -32127,7 +33783,13 @@ "$ref": "#/components/responses/search_shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search_shards\n" + } + ] } }, "/{index}/_search_shards": { @@ -32169,7 +33831,13 @@ "$ref": "#/components/responses/search_shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search_shards\n" + } + ] }, "post": { "tags": [ @@ -32209,7 +33877,13 @@ "$ref": "#/components/responses/search_shards-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search_shards\n" + } + ] } }, "/_search/template": { @@ -32271,7 +33945,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available; Added in 2.0.0" + "x-state": "Generally available; Added in 2.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -32331,7 +34011,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available; Added in 2.0.0" + "x-state": "Generally available; Added in 2.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] } }, "/{index}/_search/template": { @@ -32396,7 +34082,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available; Added in 2.0.0" + "x-state": "Generally available; Added in 2.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -32459,7 +34151,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available; Added in 2.0.0" + "x-state": "Generally available; Added in 2.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] } }, "/_searchable_snapshots/cache/stats": { @@ -32483,7 +34181,13 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, - "x-state": "Technical preview; Added in 7.13.0" + "x-state": "Technical preview; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_searchable_snapshots/cache/stats\n" + } + ] } }, "/_searchable_snapshots/{node_id}/cache/stats": { @@ -32510,7 +34214,13 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats-200" } }, - "x-state": "Technical preview; Added in 7.13.0" + "x-state": "Technical preview; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_searchable_snapshots/cache/stats\n" + } + ] } }, "/_searchable_snapshots/cache/clear": { @@ -32699,7 +34409,13 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_snapshot/my_repository/my_snapshot/_mount?wait_for_completion=true\n{\n \"index\": \"my_docs\",\n \"renamed_index\": \"docs\",\n \"index_settings\": {\n \"index.number_of_replicas\": 0\n },\n \"ignore_index_settings\": [ \"index.refresh_interval\" ]\n}" + } + ] } }, "/_searchable_snapshots/stats": { @@ -32807,7 +34523,13 @@ } } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/_activate\n{\n \"grant_type\": \"password\",\n \"username\" : \"jacknich\",\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\"\n}" + } + ] } }, "/_security/_authenticate": { @@ -32899,7 +34621,13 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_authenticate\n" + } + ] } }, "/_security/role": { @@ -32915,7 +34643,13 @@ "$ref": "#/components/responses/security.get_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role/my_admin_role\n" + } + ] }, "post": { "tags": [ @@ -33025,7 +34759,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role\n{\n \"roles\": {\n \"my_admin_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\",\n \"index2\"\n ],\n \"privileges\": [\n \"all\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n },\n \"my_user_role\": {\n \"cluster\": [\n \"all\"\n ],\n \"indices\": [\n {\n \"names\": [\n \"index1\"\n ],\n \"privileges\": [\n \"read\"\n ],\n \"field_security\": {\n \"grant\": [\n \"title\",\n \"body\"\n ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\"\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [\n \"admin\",\n \"read\"\n ],\n \"resources\": [\n \"*\"\n ]\n }\n ],\n \"run_as\": [\n \"other_user\"\n ],\n \"metadata\": {\n \"version\": 1\n }\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -33123,7 +34863,13 @@ } } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/role\n{\n \"names\": [\"my_admin_role\", \"my_user_role\"]\n}" + } + ] } }, "/_security/api_key/_bulk_update": { @@ -33252,7 +34998,13 @@ "$ref": "#/components/responses/security.change_password-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" + } + ] }, "post": { "tags": [ @@ -33277,7 +35029,13 @@ "$ref": "#/components/responses/security.change_password-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" + } + ] } }, "/_security/user/_password": { @@ -33301,7 +35059,13 @@ "$ref": "#/components/responses/security.change_password-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" + } + ] }, "post": { "tags": [ @@ -33323,7 +35087,13 @@ "$ref": "#/components/responses/security.change_password-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich/_password\n{\n \"password\" : \"new-test-password\"\n}" + } + ] } }, "/_security/api_key/{ids}/_clear_cache": { @@ -33767,7 +35537,13 @@ } } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" + } + ] }, "put": { "tags": [ @@ -33792,7 +35568,13 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -33817,7 +35599,13 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -33944,7 +35732,13 @@ } } }, - "x-state": "Generally available; Added in 6.7.0" + "x-state": "Generally available; Added in 6.7.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" + } + ] } }, "/_security/cross_cluster/api_key": { @@ -34035,7 +35829,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/cross_cluster/api_key\n{\n \"name\": \"my-cross-cluster-api-key\",\n \"expiration\": \"1d\", \n \"access\": {\n \"search\": [ \n {\n \"names\": [\"logs*\"]\n }\n ],\n \"replication\": [ \n {\n \"names\": [\"archive*\"]\n }\n ]\n },\n \"metadata\": {\n \"description\": \"phase one\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" + } + ] } }, "/_security/service/{namespace}/{service}/credential/token/{name}": { @@ -34068,7 +35868,13 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" + } + ] }, "post": { "tags": [ @@ -34099,7 +35905,13 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" + } + ] }, "delete": { "tags": [ @@ -34183,7 +35995,13 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/service/elastic/fleet-server/credential/token/token42\n" + } + ] } }, "/_security/service/{namespace}/{service}/credential/token": { @@ -34213,7 +36031,13 @@ "$ref": "#/components/responses/security.create_service_token-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/service/elastic/fleet-server/credential/token/token1\n" + } + ] } }, "/_security/delegate_pki": { @@ -34322,7 +36146,13 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/privilege/myapp/read\n" + } + ] }, "delete": { "tags": [ @@ -34392,7 +36222,13 @@ } } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/privilege/myapp/read\n" + } + ] } }, "/_security/role/{name}": { @@ -34413,7 +36249,13 @@ "$ref": "#/components/responses/security.get_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role/my_admin_role\n" + } + ] }, "put": { "tags": [ @@ -34441,7 +36283,13 @@ "$ref": "#/components/responses/security.put_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" + } + ] }, "post": { "tags": [ @@ -34469,7 +36317,13 @@ "$ref": "#/components/responses/security.put_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" + } + ] }, "delete": { "tags": [ @@ -34528,7 +36382,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/role/my_admin_role\n" + } + ] } }, "/_security/role_mapping/{name}": { @@ -34552,7 +36412,13 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role_mapping/mapping1\n" + } + ] }, "put": { "tags": [ @@ -34580,7 +36446,13 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" + } + ] }, "post": { "tags": [ @@ -34608,7 +36480,13 @@ "$ref": "#/components/responses/security.put_role_mapping-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role_mapping/mapping1\n{\n \"roles\": [ \"user\"],\n \"enabled\": true, \n \"rules\": {\n \"field\" : { \"username\" : \"*\" }\n },\n \"metadata\" : { \n \"version\" : 1\n }\n}" + } + ] }, "delete": { "tags": [ @@ -34670,7 +36548,13 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/role_mapping/mapping1\n" + } + ] } }, "/_security/user/{username}": { @@ -34694,7 +36578,13 @@ "$ref": "#/components/responses/security.get_user-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/jacknich?with_profile_uid=true\n" + } + ] }, "put": { "tags": [ @@ -34719,7 +36609,13 @@ "$ref": "#/components/responses/security.put_user-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" + } + ] }, "post": { "tags": [ @@ -34744,7 +36640,13 @@ "$ref": "#/components/responses/security.put_user-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/user/jacknich\n{\n \"password\" : \"l0ng-r4nd0m-p@ssw0rd\",\n \"roles\" : [ \"admin\", \"other_role1\" ],\n \"full_name\" : \"Jack Nicholson\",\n \"email\" : \"jacknich@example.com\",\n \"metadata\" : {\n \"intelligence\" : 7\n }\n}" + } + ] }, "delete": { "tags": [ @@ -34803,7 +36705,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/user/jacknich\n" + } + ] } }, "/_security/user/{username}/_disable": { @@ -35029,7 +36937,13 @@ } } }, - "x-state": "Generally available; Added in 8.0.0" + "x-state": "Generally available; Added in 8.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/enroll/kibana\n" + } + ] } }, "/_security/enroll/node": { @@ -35156,7 +37070,13 @@ } } }, - "x-state": "Generally available; Added in 7.3.0" + "x-state": "Generally available; Added in 7.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/privilege/_builtin\n" + } + ] } }, "/_security/privilege": { @@ -35175,7 +37095,13 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/privilege/myapp/read\n" + } + ] }, "put": { "tags": [ @@ -35200,7 +37126,13 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -35225,7 +37157,13 @@ "$ref": "#/components/responses/security.put_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/privilege\n{\n \"myapp\": {\n \"read\": {\n \"actions\": [ \n \"data:read/*\" , \n \"action:login\" ],\n \"metadata\": { \n \"description\": \"Read access to myapp\"\n }\n }\n }\n}" + } + ] } }, "/_security/privilege/{application}": { @@ -35249,7 +37187,13 @@ "$ref": "#/components/responses/security.get_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/privilege/myapp/read\n" + } + ] } }, "/_security/role_mapping": { @@ -35268,7 +37212,13 @@ "$ref": "#/components/responses/security.get_role_mapping-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role_mapping/mapping1\n" + } + ] } }, "/_security/service/{namespace}/{service}": { @@ -35295,7 +37245,13 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/service/elastic/fleet-server\n" + } + ] } }, "/_security/service/{namespace}": { @@ -35319,7 +37275,13 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/service/elastic/fleet-server\n" + } + ] } }, "/_security/service": { @@ -35338,7 +37300,13 @@ "$ref": "#/components/responses/security.get_service_accounts-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/service/elastic/fleet-server\n" + } + ] } }, "/_security/service/{namespace}/{service}/credential": { @@ -35417,7 +37385,13 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/service/elastic/fleet-server/credential\n" + } + ] } }, "/_security/settings": { @@ -35546,7 +37520,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/settings\n{\n \"security\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-tokens\": {\n \"index.auto_expand_replicas\": \"0-all\"\n },\n \"security-profile\": {\n \"index.auto_expand_replicas\": \"0-all\"\n }\n}" + } + ] } }, "/_security/oauth2/token": { @@ -35658,7 +37638,13 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/oauth2/token\n{\n \"grant_type\" : \"client_credentials\"\n}" + } + ] }, "delete": { "tags": [ @@ -35764,7 +37750,13 @@ } } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/oauth2/token\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\"\n}" + } + ] } }, "/_security/user": { @@ -35785,7 +37777,13 @@ "$ref": "#/components/responses/security.get_user-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/jacknich?with_profile_uid=true\n" + } + ] } }, "/_security/user/_privileges": { @@ -35904,7 +37902,13 @@ } } }, - "x-state": "Generally available; Added in 6.5.0" + "x-state": "Generally available; Added in 6.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_privileges\n" + } + ] } }, "/_security/profile/{uid}": { @@ -36002,7 +38006,13 @@ } } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/profile/u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\n" + } + ] } }, "/_security/api_key/grant": { @@ -36095,7 +38105,13 @@ } } }, - "x-state": "Generally available; Added in 7.9.0" + "x-state": "Generally available; Added in 7.9.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/api_key/grant\n{\n \"grant_type\": \"password\",\n \"username\" : \"test_admin\",\n \"password\" : \"x-pack-test-password\",\n \"api_key\" : {\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\",\n \"role_descriptors\": {\n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n }\n}" + } + ] } }, "/_security/user/_has_privileges": { @@ -36117,7 +38133,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -36137,7 +38159,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] } }, "/_security/user/{user}/_has_privileges": { @@ -36164,7 +38192,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -36189,7 +38223,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available; Added in 6.4.0" + "x-state": "Generally available; Added in 6.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] } }, "/_security/profile/_has_privileges": { @@ -36211,7 +38251,13 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, - "x-state": "Generally available; Added in 8.3.0" + "x-state": "Generally available; Added in 8.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" + } + ] }, "post": { "tags": [ @@ -36231,7 +38277,13 @@ "$ref": "#/components/responses/security.has_privileges_user_profile-200" } }, - "x-state": "Generally available; Added in 8.3.0" + "x-state": "Generally available; Added in 8.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/_has_privileges\n{\n \"uids\": [\n \"u_LQPnxDxEjIH0GOUoFkZr5Y57YUwSkL9Joiq-g4OCbPc_0\",\n \"u_rzRnxDgEHIH0GOUoFkZr5Y27YUwSk19Joiq=g4OCxxB_1\",\n \"u_does-not-exist_0\"\n ],\n \"privileges\": {\n \"cluster\": [ \"monitor\", \"create_snapshot\", \"manage_ml\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"create_doc\"]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n }\n}" + } + ] } }, "/_security/oidc/authenticate": { @@ -36323,7 +38375,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/oidc/authenticate\n{\n \"redirect_uri\" : \"https://oidc-kibana.elastic.co:5603/api/security/oidc/callback?code=jtI3Ntt8v3_XvcLzCFGq&state=4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"state\" : \"4dbrihtIAt3wBTwo6DxK-vdk-sSyDBV8Yf0AjdkdT5I\",\n \"nonce\" : \"WaBPH0KqPVdG5HHdSxPRjfoZbXMCicm5v1OiAj0DUFM\",\n \"realm\" : \"oidc1\"\n}" + } + ] } }, "/_security/oidc/logout": { @@ -36390,7 +38448,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/oidc/logout\n{\n \"token\" : \"dGhpcyBpcyBub3QgYSByZWFsIHRva2VuIGJ1dCBpdCBpcyBvbmx5IHRlc3QgZGF0YS4gZG8gbm90IHRyeSB0byByZWFkIHRva2VuIQ==\",\n \"refresh_token\": \"vLBPvmAB6KvwvJZr27cS\"\n}" + } + ] } }, "/_security/oidc/prepare": { @@ -36489,7 +38553,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/oidc/prepare\n{\n \"realm\" : \"oidc1\"\n}" + } + ] } }, "/_security/_query/api_key": { @@ -36519,7 +38589,13 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -36547,7 +38623,13 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, - "x-state": "Generally available; Added in 7.15.0" + "x-state": "Generally available; Added in 7.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" + } + ] } }, "/_security/_query/role": { @@ -36566,7 +38648,13 @@ "$ref": "#/components/responses/security.query_role-200" } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" + } + ] }, "post": { "tags": [ @@ -36583,7 +38671,13 @@ "$ref": "#/components/responses/security.query_role-200" } }, - "x-state": "Generally available; Added in 8.15.0" + "x-state": "Generally available; Added in 8.15.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" + } + ] } }, "/_security/_query/user": { @@ -36607,7 +38701,13 @@ "$ref": "#/components/responses/security.query_user-200" } }, - "x-state": "Generally available; Added in 8.14.0" + "x-state": "Generally available; Added in 8.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -36629,7 +38729,13 @@ "$ref": "#/components/responses/security.query_user-200" } }, - "x-state": "Generally available; Added in 8.14.0" + "x-state": "Generally available; Added in 8.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/user?with_profile_uid=true\n{\n \"query\": {\n \"prefix\": {\n \"roles\": \"other\"\n }\n }\n}" + } + ] } }, "/_security/saml/authenticate": { @@ -36723,7 +38829,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/saml/authenticate\n{\n \"content\" : \"PHNhbWxwOlJlc3BvbnNlIHhtbG5zOnNhbWxwPSJ1cm46b2FzaXM6bmFtZXM6dGM6U0FNTDoyLjA6cHJvdG9jb2wiIHhtbG5zOnNhbWw9InVybjpvYXNpczpuYW1lczp0YzpTQU1MOjIuMD.....\",\n \"ids\" : [\"4fee3b046395c4e751011e97f8900b5273d56685\"]\n}" + } + ] } }, "/_security/saml/complete_logout": { @@ -36788,7 +38900,13 @@ } } }, - "x-state": "Generally available; Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/saml/complete_logout\n{\n \"realm\": \"saml1\",\n \"ids\": [ \"_1c368075e0b3...\" ],\n \"query_string\": \"SAMLResponse=fZHLasMwEEVbfb1bf...&SigAlg=http%3A%2F%2Fwww.w3.org%2F2000%2F09%2Fxmldsig%23rsa-sha1&Signature=CuCmFn%2BLqnaZGZJqK...\"\n}" + } + ] } }, "/_security/saml/invalidate": { @@ -36872,7 +38990,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/saml/invalidate\n{\n \"query_string\" : \"SAMLRequest=nZFda4MwFIb%2FiuS%2BmviRpqFaClKQdbvo2g12M2KMraCJ9cRR9utnW4Wyi13sMie873MeznJ1aWrnS3VQGR0j4mLkKC1NUeljjA77zYyhVbIE0dR%2By7fmaHq7U%2BdegXWGpAZ%2B%2F4pR32luBFTAtWgUcCv56%2Fp5y30X87Yz1khTIycdgpUW9kY7WdsC9zxoXTvMvWuVV98YyMnSGH2SYE5pwALBIr9QKiwDGpW0oGVUznGeMyJZKFkQ4jBf5HnhUymjIhzCAL3KNFihbYx8TBYzzGaY7EnIyZwHzCWMfiDnbRIftkSjJr%2BFu0e9v%2B0EgOquRiiZjKpiVFp6j50T4WXoyNJ%2FEWC9fdqc1t%2F1%2B2F3aUpjzhPiXpqMz1%2FHSn4A&SigAlg=http%3A%2F%2Fwww.w3.org%2F2001%2F04%2Fxmldsig-more%23rsa-sha256&Signature=MsAYz2NFdovMG2mXf6TSpu5vlQQyEJAg%2B4KCwBqJTmrb3yGXKUtIgvjqf88eCAK32v3eN8vupjPC8LglYmke1ZnjK0%2FKxzkvSjTVA7mMQe2AQdKbkyC038zzRq%2FYHcjFDE%2Bz0qISwSHZY2NyLePmwU7SexEXnIz37jKC6NMEhus%3D\",\n \"realm\" : \"saml1\"\n}" + } + ] } }, "/_security/saml/logout": { @@ -36942,7 +39066,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/saml/logout\n{\n \"token\" : \"46ToAxZVaXVVZTVKOVF5YU04ZFJVUDVSZlV3\",\n \"refresh_token\" : \"mJdXLtmvTUSpoLwMvdBt_w\"\n}" + } + ] } }, "/_security/saml/prepare": { @@ -37028,7 +39158,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/saml/prepare\n{\n \"realm\" : \"saml1\"\n}" + } + ] } }, "/_security/saml/metadata/{realm_name}": { @@ -37079,7 +39215,13 @@ } } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n" + } + ] } }, "/_security/profile/_suggest": { @@ -37103,7 +39245,13 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -37125,7 +39273,13 @@ "$ref": "#/components/responses/security.suggest_user_profiles-200" } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/_suggest\n{\n \"name\": \"jack\", \n \"hint\": {\n \"uids\": [ \n \"u_8RKO7AKfEbSiIHZkZZ2LJy2MUSDPWDr3tMI_CkIGApU_0\",\n \"u_79HkWkwmnBH5gqFKwoxggWPjEBOur1zLPXQPEl1VBW0_0\"\n ],\n \"labels\": {\n \"direction\": [\"north\", \"east\"] \n }\n }\n}" + } + ] } }, "/_security/api_key/{id}": { @@ -37213,7 +39367,13 @@ } } }, - "x-state": "Generally available; Added in 8.4.0" + "x-state": "Generally available; Added in 8.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" + } + ] } }, "/_security/cross_cluster/api_key/{id}": { @@ -37297,7 +39457,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/cross_cluster/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"access\": {\n \"replication\": [\n {\n \"names\": [\"archive\"]\n }\n ]\n },\n \"metadata\": {\n \"application\": \"replication\"\n }\n}" + } + ] } }, "/_security/profile/{uid}/_data": { @@ -37330,7 +39496,13 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -37361,7 +39533,13 @@ "$ref": "#/components/responses/security.update_user_profile_data-200" } }, - "x-state": "Generally available; Added in 8.2.0" + "x-state": "Generally available; Added in 8.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/profile/u_P_0BMHgaOK3p7k-PFWUCbw9dQ-UFjt01oWJ_Dp2PmPc_0/_data\n{\n \"labels\": {\n \"direction\": \"east\"\n },\n \"data\": {\n \"app1\": {\n \"theme\": \"default\"\n }\n }\n}" + } + ] } }, "/_nodes/{node_id}/shutdown": { @@ -37385,7 +39563,13 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" + } + ] }, "put": { "tags": [ @@ -37476,7 +39660,13 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n{\n \"type\": \"restart\",\n \"reason\": \"Demonstrating how the node shutdown API works\",\n \"allocation_delay\": \"20m\"\n}" + } + ] }, "delete": { "tags": [ @@ -37536,7 +39726,13 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" + } + ] } }, "/_nodes/shutdown": { @@ -37557,7 +39753,13 @@ "$ref": "#/components/responses/shutdown.get_node-200" } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_nodes/USpTGYaBSIKbgSUJR2Z9lg/shutdown\n" + } + ] } }, "/_ingest/_simulate": { @@ -37581,7 +39783,13 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -37603,7 +39811,13 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_ingest/{index}/_simulate": { @@ -37630,7 +39844,13 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -37655,7 +39875,13 @@ "$ref": "#/components/responses/simulate.ingest-200" } }, - "x-state": "Technical preview; Added in 8.12.0" + "x-state": "Technical preview; Added in 8.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/_simulate\n{\n \"docs\": [\n {\n \"_id\": 123,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_id\": 456,\n \"_index\": \"my-index\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_slm/policy/{policy_id}": { @@ -37682,7 +39908,13 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _slm/policy/daily-snapshots?human\n" + } + ] }, "put": { "tags": [ @@ -37775,7 +40007,13 @@ } } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_slm/policy/daily-snapshots\n{\n \"schedule\": \"0 30 1 * * ?\",\n \"name\": \"\",\n \"repository\": \"my_repository\",\n \"config\": {\n \"indices\": [\"data-*\", \"important\"],\n \"ignore_unavailable\": false,\n \"include_global_state\": false\n },\n \"retention\": {\n \"expire_after\": \"30d\",\n \"min_count\": 5,\n \"max_count\": 50\n }\n}" + } + ] }, "delete": { "tags": [ @@ -37899,7 +40137,13 @@ } } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_slm/policy/daily-snapshots/_execute\n" + } + ] } }, "/_slm/_execute_retention": { @@ -37968,7 +40212,13 @@ "$ref": "#/components/responses/slm.get_lifecycle-200" } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _slm/policy/daily-snapshots?human\n" + } + ] } }, "/_slm/stats": { @@ -38066,7 +40316,13 @@ } } }, - "x-state": "Generally available; Added in 7.5.0" + "x-state": "Generally available; Added in 7.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_slm/stats\n" + } + ] } }, "/_slm/status": { @@ -38124,7 +40380,13 @@ } } }, - "x-state": "Generally available; Added in 7.6.0" + "x-state": "Generally available; Added in 7.6.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _slm/status\n" + } + ] } }, "/_slm/start": { @@ -38175,7 +40437,13 @@ } } }, - "x-state": "Generally available; Added in 7.6.0" + "x-state": "Generally available; Added in 7.6.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _slm/start\n" + } + ] } }, "/_slm/stop": { @@ -38293,7 +40561,13 @@ } } }, - "x-state": "Generally available; Added in 7.4.0" + "x-state": "Generally available; Added in 7.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_snapshot/my_repository/_cleanup\n" + } + ] } }, "/_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}": { @@ -38386,7 +40660,13 @@ } } }, - "x-state": "Generally available; Added in 7.10.0" + "x-state": "Generally available; Added in 7.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_snapshot/my_repository/source_snapshot/_clone/target_snapshot\n{\n \"indices\": \"index_a,index_b\"\n}" + } + ] } }, "/_snapshot/{repository}/{snapshot}": { @@ -38601,7 +40881,13 @@ } } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_snapshot/my_repository/snapshot_*?sort=start_time&from_sort_value=1577833200000\n" + } + ] }, "put": { "tags": [ @@ -38635,7 +40921,13 @@ "$ref": "#/components/responses/snapshot.create-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -38669,7 +40961,13 @@ "$ref": "#/components/responses/snapshot.create-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_snapshot/my_repository/snapshot_2?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"metadata\": {\n \"taken_by\": \"user123\",\n \"taken_because\": \"backup before upgrading\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -38729,7 +41027,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_snapshot/my_repository/snapshot_2,snapshot_3\n" + } + ] } }, "/_snapshot/{repository}": { @@ -38755,7 +41059,13 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_snapshot/my_repository\n" + } + ] }, "put": { "tags": [ @@ -38789,7 +41099,13 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -38823,7 +41139,13 @@ "$ref": "#/components/responses/snapshot.create_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_snapshot/my_repository\n{\n \"type\": \"fs\",\n \"settings\": {\n \"location\": \"my_backup_location\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -38900,7 +41222,13 @@ "$ref": "#/components/responses/snapshot.get_repository-200" } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_snapshot/my_repository\n" + } + ] } }, "/_snapshot/{repository}/_analyze": { @@ -39154,7 +41482,13 @@ } } }, - "x-state": "Generally available; Added in 7.12.0" + "x-state": "Generally available; Added in 7.12.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_snapshot/my_repository/_analyze?blob_count=10&max_blob_size=1mb&timeout=120s\n" + } + ] } }, "/_snapshot/{repository}/_verify_integrity": { @@ -39421,7 +41755,13 @@ } } }, - "x-state": "Generally available; Added in 0.0.0" + "x-state": "Generally available; Added in 0.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_snapshot/my_repository/snapshot_2/_restore?wait_for_completion=true\n{\n \"indices\": \"index_1,index_2\",\n \"ignore_unavailable\": true,\n \"include_global_state\": false,\n \"rename_pattern\": \"index_(.+)\",\n \"rename_replacement\": \"restored_index_$1\",\n \"include_aliases\": false\n}" + } + ] } }, "/_snapshot/_status": { @@ -39445,7 +41785,13 @@ "$ref": "#/components/responses/snapshot.status-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _snapshot/my_repository/snapshot_2/_status\n" + } + ] } }, "/_snapshot/{repository}/_status": { @@ -39472,7 +41818,13 @@ "$ref": "#/components/responses/snapshot.status-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _snapshot/my_repository/snapshot_2/_status\n" + } + ] } }, "/_snapshot/{repository}/{snapshot}/_status": { @@ -39502,7 +41854,13 @@ "$ref": "#/components/responses/snapshot.status-200" } }, - "x-state": "Generally available; Added in 7.8.0" + "x-state": "Generally available; Added in 7.8.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _snapshot/my_repository/snapshot_2/_status\n" + } + ] } }, "/_snapshot/{repository}/_verify": { @@ -39628,7 +41986,13 @@ } } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" + } + ] } }, "/_sql/async/delete/{id}": { @@ -39867,7 +42231,13 @@ "$ref": "#/components/responses/sql.query-200" } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" + } + ] }, "post": { "tags": [ @@ -39889,7 +42259,13 @@ "$ref": "#/components/responses/sql.query-200" } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" + } + ] } }, "/_sql/translate": { @@ -39908,7 +42284,13 @@ "$ref": "#/components/responses/sql.translate-200" } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" + } + ] }, "post": { "tags": [ @@ -39925,7 +42307,13 @@ "$ref": "#/components/responses/sql.translate-200" } }, - "x-state": "Generally available; Added in 6.3.0" + "x-state": "Generally available; Added in 6.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" + } + ] } }, "/_ssl/certificates": { @@ -39960,7 +42348,13 @@ } } }, - "x-state": "Generally available; Added in 6.2.0" + "x-state": "Generally available; Added in 6.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_ssl/certificates\n" + } + ] } }, "/_synonyms/{id}": { @@ -40038,7 +42432,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms/my-synonyms-set\n" + } + ] }, "put": { "tags": [ @@ -40209,7 +42609,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms/my-synonyms-set/test-1\n" + } + ] }, "put": { "tags": [ @@ -40295,7 +42701,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" + } + ] }, "delete": { "tags": [ @@ -40356,7 +42768,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE _synonyms/my-synonyms-set/test-1\n" + } + ] } }, "/_synonyms": { @@ -40424,7 +42842,13 @@ } } }, - "x-state": "Generally available; Added in 8.10.0" + "x-state": "Generally available; Added in 8.10.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms\n" + } + ] } }, "/_tasks/_cancel": { @@ -40573,7 +42997,13 @@ } } }, - "x-state": "Technical preview; Added in 5.0.0" + "x-state": "Technical preview; Added in 5.0.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _tasks?actions=cluster:*\n" + } + ] } }, "/_tasks": { @@ -40684,7 +43114,13 @@ } } }, - "x-state": "Technical preview; Added in 2.3.0" + "x-state": "Technical preview; Added in 2.3.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _tasks?actions=*search&detailed\n" + } + ] } }, "/{index}/_terms_enum": { @@ -40708,7 +43144,13 @@ "$ref": "#/components/responses/terms_enum-200" } }, - "x-state": "Generally available; Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" + } + ] }, "post": { "tags": [ @@ -40730,7 +43172,13 @@ "$ref": "#/components/responses/terms_enum-200" } }, - "x-state": "Generally available; Added in 7.14.0" + "x-state": "Generally available; Added in 7.14.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" + } + ] } }, "/{index}/_termvectors/{id}": { @@ -40790,7 +43238,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] }, "post": { "tags": [ @@ -40848,7 +43302,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] } }, "/{index}/_termvectors": { @@ -40905,7 +43365,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] }, "post": { "tags": [ @@ -40960,7 +43426,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] } }, "/_text_structure/find_field_structure": { @@ -41200,7 +43672,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _text_structure/find_field_structure?index=test-logs&field=message\n" + } + ] } }, "/_text_structure/find_message_structure": { @@ -41254,7 +43732,13 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" + } + ] }, "post": { "tags": [ @@ -41306,7 +43790,13 @@ "$ref": "#/components/responses/text_structure.find_message_structure-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _text_structure/find_message_structure\n{\n \"messages\": [\n \"[2024-03-05T10:52:36,256][INFO ][o.a.l.u.VectorUtilPanamaProvider] [laptop] Java vector incubator API enabled; uses preferredBitSize=128\",\n \"[2024-03-05T10:52:41,038][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-url]\",\n \"[2024-03-05T10:52:41,042][INFO ][o.e.p.PluginsService ] [laptop] loaded module [rest-root]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-core]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-redact]\",\n \"[2024-03-05T10:52:41,043][INFO ][o.e.p.PluginsService ] [laptop] loaded module [ingest-user-agent]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-monitoring]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [repository-s3]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-analytics]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-ent-search]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-autoscaling]\",\n \"[2024-03-05T10:52:41,044][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-painless]]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [lang-expression]\",\n \"[2024-03-05T10:52:41,059][INFO ][o.e.p.PluginsService ] [laptop] loaded module [x-pack-eql]\",\n \"[2024-03-05T10:52:43,291][INFO ][o.e.e.NodeEnvironment ] [laptop] heap size [16gb], compressed ordinary object pointers [true]\",\n \"[2024-03-05T10:52:46,098][INFO ][o.e.x.s.Security ] [laptop] Security is enabled\",\n \"[2024-03-05T10:52:47,227][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] Profiling is enabled\",\n \"[2024-03-05T10:52:47,259][INFO ][o.e.x.p.ProfilingPlugin ] [laptop] profiling index templates will not be installed or reinstalled\",\n \"[2024-03-05T10:52:47,755][INFO ][o.e.i.r.RecoverySettings ] [laptop] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]\",\n \"[2024-03-05T10:52:47,787][INFO ][o.e.d.DiscoveryModule ] [laptop] using discovery type [multi-node] and seed hosts providers [settings]\",\n \"[2024-03-05T10:52:49,188][INFO ][o.e.n.Node ] [laptop] initialized\",\n \"[2024-03-05T10:52:49,199][INFO ][o.e.n.Node ] [laptop] starting ...\"\n ]\n}" + } + ] } }, "/_text_structure/find_structure": { @@ -41612,7 +44102,13 @@ } } }, - "x-state": "Generally available; Added in 7.13.0" + "x-state": "Generally available; Added in 7.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _text_structure/find_structure\n{\"name\": \"Leviathan Wakes\", \"author\": \"James S.A. Corey\", \"release_date\": \"2011-06-02\", \"page_count\": 561}\n{\"name\": \"Hyperion\", \"author\": \"Dan Simmons\", \"release_date\": \"1989-05-26\", \"page_count\": 482}\n{\"name\": \"Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1965-06-01\", \"page_count\": 604}\n{\"name\": \"Dune Messiah\", \"author\": \"Frank Herbert\", \"release_date\": \"1969-10-15\", \"page_count\": 331}\n{\"name\": \"Children of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1976-04-21\", \"page_count\": 408}\n{\"name\": \"God Emperor of Dune\", \"author\": \"Frank Herbert\", \"release_date\": \"1981-05-28\", \"page_count\": 454}\n{\"name\": \"Consider Phlebas\", \"author\": \"Iain M. Banks\", \"release_date\": \"1987-04-23\", \"page_count\": 471}\n{\"name\": \"Pandora's Star\", \"author\": \"Peter F. Hamilton\", \"release_date\": \"2004-03-02\", \"page_count\": 768}\n{\"name\": \"Revelation Space\", \"author\": \"Alastair Reynolds\", \"release_date\": \"2000-03-15\", \"page_count\": 585}\n{\"name\": \"A Fire Upon the Deep\", \"author\": \"Vernor Vinge\", \"release_date\": \"1992-06-01\", \"page_count\": 613}\n{\"name\": \"Ender's Game\", \"author\": \"Orson Scott Card\", \"release_date\": \"1985-06-01\", \"page_count\": 324}\n{\"name\": \"1984\", \"author\": \"George Orwell\", \"release_date\": \"1985-06-01\", \"page_count\": 328}\n{\"name\": \"Fahrenheit 451\", \"author\": \"Ray Bradbury\", \"release_date\": \"1953-10-15\", \"page_count\": 227}\n{\"name\": \"Brave New World\", \"author\": \"Aldous Huxley\", \"release_date\": \"1932-06-01\", \"page_count\": 268}\n{\"name\": \"Foundation\", \"author\": \"Isaac Asimov\", \"release_date\": \"1951-06-01\", \"page_count\": 224}\n{\"name\": \"The Giver\", \"author\": \"Lois Lowry\", \"release_date\": \"1993-04-26\", \"page_count\": 208}\n{\"name\": \"Slaughterhouse-Five\", \"author\": \"Kurt Vonnegut\", \"release_date\": \"1969-06-01\", \"page_count\": 275}\n{\"name\": \"The Hitchhiker's Guide to the Galaxy\", \"author\": \"Douglas Adams\", \"release_date\": \"1979-10-12\", \"page_count\": 180}\n{\"name\": \"Snow Crash\", \"author\": \"Neal Stephenson\", \"release_date\": \"1992-06-01\", \"page_count\": 470}\n{\"name\": \"Neuromancer\", \"author\": \"William Gibson\", \"release_date\": \"1984-07-01\", \"page_count\": 271}\n{\"name\": \"The Handmaid's Tale\", \"author\": \"Margaret Atwood\", \"release_date\": \"1985-06-01\", \"page_count\": 311}\n{\"name\": \"Starship Troopers\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1959-12-01\", \"page_count\": 335}\n{\"name\": \"The Left Hand of Darkness\", \"author\": \"Ursula K. Le Guin\", \"release_date\": \"1969-06-01\", \"page_count\": 304}\n{\"name\": \"The Moon is a Harsh Mistress\", \"author\": \"Robert A. Heinlein\", \"release_date\": \"1966-04-01\", \"page_count\": 288}" + } + ] } }, "/_text_structure/test_grok_pattern": { @@ -41639,7 +44135,13 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" + } + ] }, "post": { "tags": [ @@ -41664,7 +44166,13 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern-200" } }, - "x-state": "Generally available; Added in 8.13.0" + "x-state": "Generally available; Added in 8.13.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _text_structure/test_grok_pattern\n{\n \"grok_pattern\": \"Hello %{WORD:first_name} %{WORD:last_name}\",\n \"text\": [\n \"Hello John Doe\",\n \"this does not match\"\n ]\n}" + } + ] } }, "/_transform/{transform_id}": { @@ -41816,7 +44324,13 @@ } } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -42039,7 +44553,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -42064,7 +44584,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] } }, "/_transform/_preview": { @@ -42088,7 +44614,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -42110,7 +44642,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] } }, "/_transform/{transform_id}/_reset": { @@ -42545,7 +45083,13 @@ } } }, - "x-state": "Generally available; Added in 7.2.0" + "x-state": "Generally available; Added in 7.2.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" + } + ] } }, "/_transform/_upgrade": { @@ -42894,7 +45438,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" + } + ] } }, "/{index}/_update_by_query": { @@ -43357,7 +45907,13 @@ } } }, - "x-state": "Generally available; Added in 2.4.0" + "x-state": "Generally available; Added in 2.4.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } }, "/_update_by_query/{task_id}/_rethrottle": { @@ -43435,7 +45991,13 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_ack\n" + } + ] }, "post": { "tags": [ @@ -43454,7 +46016,13 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_ack\n" + } + ] } }, "/_watcher/watch/{watch_id}/_ack/{action_id}": { @@ -43478,7 +46046,13 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_ack\n" + } + ] }, "post": { "tags": [ @@ -43500,7 +46074,13 @@ "$ref": "#/components/responses/watcher.ack_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_ack\n" + } + ] } }, "/_watcher/watch/{watch_id}/_activate": { @@ -43660,7 +46240,13 @@ } } }, - "x-state": "Generally available; Added in 5.6.0" + "x-state": "Generally available; Added in 5.6.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _watcher/watch/my_watch\n" + } + ] }, "put": { "tags": [ @@ -43694,7 +46280,13 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -43728,7 +46320,13 @@ "$ref": "#/components/responses/watcher.put_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _watcher/watch/my-watch\n{\n \"trigger\" : {\n \"schedule\" : { \"cron\" : \"0 0/1 * * * ?\" }\n },\n \"input\" : {\n \"search\" : {\n \"request\" : {\n \"indices\" : [\n \"logstash*\"\n ],\n \"body\" : {\n \"query\" : {\n \"bool\" : {\n \"must\" : {\n \"match\": {\n \"response\": 404\n }\n },\n \"filter\" : {\n \"range\": {\n \"@timestamp\": {\n \"from\": \"{{ctx.trigger.scheduled_time}}||-5m\",\n \"to\": \"{{ctx.trigger.triggered_time}}\"\n }\n }\n }\n }\n }\n }\n }\n }\n },\n \"condition\" : {\n \"compare\" : { \"ctx.payload.hits.total\" : { \"gt\" : 0 }}\n },\n \"actions\" : {\n \"email_admin\" : {\n \"email\" : {\n \"to\" : \"admin@domain.host.com\",\n \"subject\" : \"404 recently encountered\"\n }\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -43784,7 +46382,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE _watcher/watch/my_watch\n" + } + ] } }, "/_watcher/watch/{id}/_execute": { @@ -43811,7 +46415,13 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" + } + ] }, "post": { "tags": [ @@ -43836,7 +46446,13 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" + } + ] } }, "/_watcher/watch/_execute": { @@ -43860,7 +46476,13 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" + } + ] }, "post": { "tags": [ @@ -43882,7 +46504,13 @@ "$ref": "#/components/responses/watcher.execute_watch-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/watch/my_watch/_execute\n{\n \"trigger_data\" : { \n \"triggered_time\" : \"now\",\n \"scheduled_time\" : \"now\"\n },\n \"alternative_input\" : { \n \"foo\" : \"bar\"\n },\n \"ignore_condition\" : true, \n \"action_modes\" : {\n \"my-action\" : \"force_simulate\" \n },\n \"record_execution\" : true \n}" + } + ] } }, "/_watcher/settings": { @@ -44005,7 +46633,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_watcher/settings\n{\n \"index.auto_expand_replicas\": \"0-4\"\n}" + } + ] } }, "/_watcher/_query/watches": { @@ -44024,7 +46658,13 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_watcher/_query/watches\n" + } + ] }, "post": { "tags": [ @@ -44041,7 +46681,13 @@ "$ref": "#/components/responses/watcher.query_watches-200" } }, - "x-state": "Generally available; Added in 7.11.0" + "x-state": "Generally available; Added in 7.11.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_watcher/_query/watches\n" + } + ] } }, "/_watcher/_start": { @@ -44082,7 +46728,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/_start\n" + } + ] } }, "/_watcher/stats": { @@ -44106,7 +46758,13 @@ "$ref": "#/components/responses/watcher.stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _watcher/stats\n" + } + ] } }, "/_watcher/stats/{metric}": { @@ -44133,7 +46791,13 @@ "$ref": "#/components/responses/watcher.stats-200" } }, - "x-state": "Generally available; Added in 5.5.0" + "x-state": "Generally available; Added in 5.5.0", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _watcher/stats\n" + } + ] } }, "/_watcher/_stop": { @@ -44174,7 +46838,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _watcher/_stop\n" + } + ] } }, "/_xpack": { @@ -44258,7 +46928,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_xpack\n" + } + ] } }, "/_xpack/usage": { @@ -44407,7 +47083,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_xpack/usage\n" + } + ] } } }, diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 27d86a2b07..a5575613de 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -78,7 +78,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_async_search/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" + } + ] }, "delete": { "tags": [ @@ -175,7 +181,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_async_search/status/FmRldE8zREVEUzA2ZVpUeGs2ejJFUFEaMkZ5QTVrSTZSaVN3WlNFVmtlWHJsdzoxMDc=\n" + } + ] } }, "/_async_search": { @@ -325,7 +337,13 @@ "$ref": "#/components/responses/async_search.submit-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" + } + ] } }, "/{index}/_async_search": { @@ -478,7 +496,13 @@ "$ref": "#/components/responses/async_search.submit-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /sales*/_async_search?size=0\n{\n \"sort\": [\n { \"date\": { \"order\": \"asc\" } }\n ],\n \"aggs\": {\n \"sale_date\": {\n \"date_histogram\": {\n \"field\": \"date\",\n \"calendar_interval\": \"1d\"\n }\n }\n }\n}" + } + ] } }, "/_bulk": { @@ -535,7 +559,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] }, "post": { "tags": [ @@ -590,7 +620,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] } }, "/{index}/_bulk": { @@ -650,7 +686,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] }, "post": { "tags": [ @@ -708,7 +750,13 @@ "$ref": "#/components/responses/bulk-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _bulk\n{ \"index\" : { \"_index\" : \"test\", \"_id\" : \"1\" } }\n{ \"field1\" : \"value1\" }\n{ \"delete\" : { \"_index\" : \"test\", \"_id\" : \"2\" } }\n{ \"create\" : { \"_index\" : \"test\", \"_id\" : \"3\" } }\n{ \"field1\" : \"value3\" }\n{ \"update\" : {\"_id\" : \"1\", \"_index\" : \"test\"} }\n{ \"doc\" : {\"field2\" : \"value2\"} }" + } + ] } }, "/_cat/aliases": { @@ -738,7 +786,13 @@ "$ref": "#/components/responses/cat.aliases-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/aliases?format=json&v=true\n" + } + ] } }, "/_cat/aliases/{name}": { @@ -771,7 +825,13 @@ "$ref": "#/components/responses/cat.aliases-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/aliases?format=json&v=true\n" + } + ] } }, "/_cat/component_templates": { @@ -801,7 +861,13 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/component_templates/{name}": { @@ -834,7 +900,13 @@ "$ref": "#/components/responses/cat.component_templates-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/component_templates/my-template-*?v=true&s=name&format=json\n" + } + ] } }, "/_cat/count": { @@ -858,7 +930,13 @@ "$ref": "#/components/responses/cat.count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" + } + ] } }, "/_cat/count/{index}": { @@ -885,7 +963,13 @@ "$ref": "#/components/responses/cat.count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/count/my-index-000001?v=true&format=json\n" + } + ] } }, "/_cat": { @@ -953,7 +1037,13 @@ "$ref": "#/components/responses/cat.indices-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" + } + ] } }, "/_cat/indices/{index}": { @@ -1001,7 +1091,13 @@ "$ref": "#/components/responses/cat.indices-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/indices/my-index-*?v=true&s=index&format=json\n" + } + ] } }, "/_cat/ml/data_frame/analytics": { @@ -1034,7 +1130,13 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" + } + ] } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1070,7 +1172,13 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/data_frame/analytics?v=true&format=json\n" + } + ] } }, "/_cat/ml/datafeeds": { @@ -1100,7 +1208,13 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/datafeeds?v=true&format=json\n" + } + ] } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1133,7 +1247,13 @@ "$ref": "#/components/responses/cat.ml_datafeeds-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/datafeeds?v=true&format=json\n" + } + ] } }, "/_cat/ml/anomaly_detectors": { @@ -1166,7 +1286,13 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" + } + ] } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1202,7 +1328,13 @@ "$ref": "#/components/responses/cat.ml_jobs-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/anomaly_detectors?h=id,s,dpr,mb&v=true&format=json\n" + } + ] } }, "/_cat/ml/trained_models": { @@ -1241,7 +1373,13 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/trained_models?v=true&format=json\n" + } + ] } }, "/_cat/ml/trained_models/{model_id}": { @@ -1283,7 +1421,13 @@ "$ref": "#/components/responses/cat.ml_trained_models-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _cat/ml/trained_models?v=true&format=json\n" + } + ] } }, "/_cat/transforms": { @@ -1319,7 +1463,13 @@ "$ref": "#/components/responses/cat.transforms-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/transforms?v=true&format=json\n" + } + ] } }, "/_cat/transforms/{transform_id}": { @@ -1358,7 +1508,13 @@ "$ref": "#/components/responses/cat.transforms-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_cat/transforms?v=true&format=json\n" + } + ] } }, "/_search/scroll": { @@ -1391,7 +1547,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "post": { "tags": [ @@ -1422,7 +1584,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "delete": { "tags": [ @@ -1442,7 +1610,13 @@ "$ref": "#/components/responses/clear_scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] } }, "/_search/scroll/{scroll_id}": { @@ -1478,7 +1652,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "post": { "tags": [ @@ -1512,7 +1692,13 @@ "$ref": "#/components/responses/scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_search/scroll\n{\n \"scroll_id\" : \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] }, "delete": { "tags": [ @@ -1537,7 +1723,13 @@ "$ref": "#/components/responses/clear_scroll-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_search/scroll\n{\n \"scroll_id\": \"DXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAD4WYm9laVYtZndUQlNsdDcwakFMNjU1QQ==\"\n}" + } + ] } }, "/_pit": { @@ -1603,7 +1795,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_pit\n{\n \"id\": \"46ToAwMDaWR5BXV1aWQyKwZub2RlXzMAAAAAAAAAACoBYwADaWR4BXV1aWQxAgZub2RlXzEAAAAAAAAAAAEBYQADaWR5BXV1aWQyKgZub2RlXzIAAAAAAAAAAAwBYgACBXV1aWQyAAAFdXVpZDEAAQltYXRjaF9hbGw_gAAAAA==\"\n}" + } + ] } }, "/_component_template/{name}": { @@ -1664,7 +1862,13 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -1692,7 +1896,13 @@ "$ref": "#/components/responses/cluster.put_component_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _component_template/template_1\n{\n \"template\": null,\n \"settings\": {\n \"number_of_shards\": 1\n },\n \"mappings\": {\n \"_source\": {\n \"enabled\": false\n },\n \"properties\": {\n \"host_name\": {\n \"type\": \"keyword\"\n },\n \"created_at\": {\n \"type\": \"date\",\n \"format\": \"EEE MMM dd HH:mm:ss Z yyyy\"\n }\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -2001,7 +2211,13 @@ "$ref": "#/components/responses/connector.put-200" } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" + } + ] }, "delete": { "tags": [ @@ -2186,7 +2402,13 @@ "$ref": "#/components/responses/connector.put-200" } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector\n{\n \"index_name\": \"search-google-drive\",\n \"name\": \"My Connector\",\n \"service_type\": \"google_drive\"\n}" + } + ] }, "post": { "tags": [ @@ -2524,7 +2746,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _connector/_sync_job\n{\n \"id\": \"connector-id\",\n \"job_type\": \"full\",\n \"trigger_method\": \"on_demand\"\n}" + } + ] } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -2640,7 +2868,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_api_key_id\n{\n \"api_key_id\": \"my-api-key-id\",\n \"api_key_secret_id\": \"my-connector-secret-id\"\n}" + } + ] } }, "/_connector/{connector_id}/_configuration": { @@ -2718,7 +2952,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-spo-connector/_configuration\n{\n \"values\": {\n \"tenant_id\": \"my-tenant-id\",\n \"tenant_name\": \"my-sharepoint-site\",\n \"client_id\": \"foo\",\n \"secret_value\": \"bar\",\n \"site_collections\": \"*\"\n }\n}" + } + ] } }, "/_connector/{connector_id}/_error": { @@ -2797,7 +3037,13 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_error\n{\n \"error\": \"Houston, we have a problem!\"\n}" + } + ] } }, "/_connector/{connector_id}/_filtering": { @@ -2881,7 +3127,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-g-drive-connector/_filtering\n{\n \"rules\": [\n {\n \"field\": \"file_extension\",\n \"id\": \"exclude-txt-files\",\n \"order\": 0,\n \"policy\": \"exclude\",\n \"rule\": \"equals\",\n \"value\": \"txt\"\n },\n {\n \"field\": \"_\",\n \"id\": \"DEFAULT\",\n \"order\": 1,\n \"policy\": \"include\",\n \"rule\": \"regex\",\n \"value\": \".*\"\n }\n ]\n}" + } + ] } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -3022,7 +3274,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_index_name\n{\n \"index_name\": \"data-from-my-google-drive\"\n}" + } + ] } }, "/_connector/{connector_id}/_name": { @@ -3093,7 +3351,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_name\n{\n \"name\": \"Custom connector\",\n \"description\": \"This is my customized connector\"\n}" + } + ] } }, "/_connector/{connector_id}/_native": { @@ -3226,7 +3490,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_pipeline\n{\n \"pipeline\": {\n \"extract_binary_content\": true,\n \"name\": \"my-connector-pipeline\",\n \"reduce_whitespace\": true,\n \"run_ml_inference\": true\n }\n}" + } + ] } }, "/_connector/{connector_id}/_scheduling": { @@ -3300,7 +3570,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_scheduling\n{\n \"scheduling\": {\n \"access_control\": {\n \"enabled\": true,\n \"interval\": \"0 10 0 * * ?\"\n },\n \"full\": {\n \"enabled\": true,\n \"interval\": \"0 20 0 * * ?\"\n },\n \"incremental\": {\n \"enabled\": false,\n \"interval\": \"0 30 0 * * ?\"\n }\n }\n}" + } + ] } }, "/_connector/{connector_id}/_service_type": { @@ -3371,7 +3647,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_service_type\n{\n \"service_type\": \"sharepoint_online\"\n}" + } + ] } }, "/_connector/{connector_id}/_status": { @@ -3442,7 +3724,13 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _connector/my-connector/_status\n{\n \"status\": \"needs_configuration\"\n}" + } + ] } }, "/_count": { @@ -3505,7 +3793,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -3566,7 +3860,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] } }, "/{index}/_count": { @@ -3632,7 +3932,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -3696,7 +4002,13 @@ "$ref": "#/components/responses/count-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_count\n{\n \"query\" : {\n \"term\" : { \"user.id\" : \"kimchy\" }\n }\n}" + } + ] } }, "/{index}/_create/{id}": { @@ -3765,7 +4077,13 @@ "$ref": "#/components/responses/create-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -3832,7 +4150,13 @@ "$ref": "#/components/responses/create-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT my-index-000001/_create/1\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] } }, "/{index}/_doc/{id}": { @@ -3996,7 +4320,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index-000001/_doc/0\n" + } + ] }, "put": { "tags": [ @@ -4060,7 +4390,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "post": { "tags": [ @@ -4124,7 +4460,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -4255,7 +4597,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /my-index-000001/_doc/1\n" + } + ] }, "head": { "tags": [ @@ -4839,7 +5187,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001,my-index-000002/_delete_by_query\n{\n \"query\": {\n \"match_all\": {}\n }\n}" + } + ] } }, "/_scripts/{id}": { @@ -4934,7 +5288,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -4968,7 +5328,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -5451,7 +5817,13 @@ "$ref": "#/components/responses/eql.search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" + } + ] }, "post": { "tags": [ @@ -5500,7 +5872,13 @@ "$ref": "#/components/responses/eql.search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-data-stream/_eql/search\n{\n \"query\": \"\"\"\n process where (process.name == \"cmd.exe\" and process.pid != 2013)\n \"\"\"\n}" + } + ] } }, "/_query/queries/{id}": { @@ -5733,7 +6111,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_query\n{\n \"query\": \"\"\"\n FROM library,remote-*:library\n | EVAL year = DATE_TRUNC(1 YEARS, release_date)\n | STATS MAX(page_count) BY year\n | SORT year\n | LIMIT 5\n \"\"\",\n \"include_ccs_metadata\": true\n}" + } + ] } }, "/{index}/_source/{id}": { @@ -6080,7 +6464,13 @@ "$ref": "#/components/responses/explain-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" + } + ] }, "post": { "tags": [ @@ -6141,7 +6531,13 @@ "$ref": "#/components/responses/explain-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_explain/0\n{\n \"query\" : {\n \"match\" : { \"message\" : \"elasticsearch\" }\n }\n}" + } + ] } }, "/_field_caps": { @@ -6186,7 +6582,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -6229,7 +6631,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] } }, "/{index}/_field_caps": { @@ -6277,7 +6685,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -6323,7 +6737,13 @@ "$ref": "#/components/responses/field_caps-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-*/_field_caps?fields=rating\n{\n \"index_filter\": {\n \"range\": {\n \"@timestamp\": {\n \"gte\": \"2018\"\n }\n }\n }\n}" + } + ] } }, "/{index}/_graph/explore": { @@ -6356,7 +6776,13 @@ "$ref": "#/components/responses/graph.explore-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" + } + ] }, "post": { "tags": [ @@ -6387,7 +6813,13 @@ "$ref": "#/components/responses/graph.explore-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST clicklogs/_graph/explore\n{\n \"query\": {\n \"match\": {\n \"query.raw\": \"midi\"\n }\n },\n \"vertices\": [\n {\n \"field\": \"product\"\n }\n ],\n \"connections\": {\n \"vertices\": [\n {\n \"field\": \"query.raw\"\n }\n ]\n }\n}" + } + ] } }, "/{index}/_doc": { @@ -6450,7 +6882,13 @@ "$ref": "#/components/responses/index-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_doc/\n{\n \"@timestamp\": \"2099-11-15T13:12:00\",\n \"message\": \"GET /search HTTP/1.1 200 1070000\",\n \"user\": {\n \"id\": \"kimchy\"\n }\n}" + } + ] } }, "/{index}/_block/{block}": { @@ -6572,7 +7010,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_block/write\n" + } + ] } }, "/_analyze": { @@ -6599,7 +7043,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] }, "post": { "tags": [ @@ -6624,7 +7074,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] } }, "/{index}/_analyze": { @@ -6654,7 +7110,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] }, "post": { "tags": [ @@ -6682,7 +7144,13 @@ "$ref": "#/components/responses/indices.analyze-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_analyze\n{\n \"analyzer\": \"standard\",\n \"text\": \"this is a test\"\n}" + } + ] } }, "/{index}": { @@ -6922,7 +7390,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001\n{\n \"settings\": {\n \"number_of_shards\": 3,\n \"number_of_replicas\": 2\n }\n}" + } + ] }, "delete": { "tags": [ @@ -7304,7 +7778,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -7335,7 +7815,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -7430,7 +7916,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -7461,7 +7953,13 @@ "$ref": "#/components/responses/indices.put_alias-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _aliases\n{\n \"actions\": [\n {\n \"add\": {\n \"index\": \"my-data-stream\",\n \"alias\": \"my-alias\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -7553,7 +8051,13 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -7584,7 +8088,13 @@ "$ref": "#/components/responses/indices.put_index_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_index_template/template_1\n{\n \"index_patterns\" : [\"template*\"],\n \"priority\" : 1,\n \"template\": {\n \"settings\" : {\n \"number_of_shards\" : 2\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -7841,7 +8351,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET .ds-metrics-2023.03.22-000001/_lifecycle/explain\n" + } + ] } }, "/_alias": { @@ -7987,7 +8503,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_data_stream/{name}/_lifecycle?human&pretty\n" + } + ] }, "put": { "tags": [ @@ -8089,7 +8611,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _data_stream/my-data-stream/_lifecycle\n{\n \"data_retention\": \"7d\"\n}" + } + ] } }, "/_data_stream": { @@ -8406,7 +8934,13 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -8449,7 +8983,13 @@ "$ref": "#/components/responses/indices.put_mapping-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_mapping\n{\n \"properties\": {\n \"user\": {\n \"properties\": {\n \"name\": {\n \"type\": \"keyword\"\n }\n }\n }\n }\n}" + } + ] } }, "/_settings": { @@ -8534,7 +9074,13 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" + } + ] } }, "/{index}/_settings": { @@ -8625,7 +9171,13 @@ "$ref": "#/components/responses/indices.put_settings-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /my-index-000001/_settings\n{\n \"index\" : {\n \"number_of_replicas\" : 2\n }\n}" + } + ] } }, "/{index}/_settings/{name}": { @@ -9020,7 +9572,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_resolve/index/f*,remoteCluster1:bar*?expand_wildcards=all\n" + } + ] } }, "/{alias}/_rollover": { @@ -9059,7 +9617,13 @@ "$ref": "#/components/responses/indices.rollover-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" + } + ] } }, "/{alias}/_rollover/{new_index}": { @@ -9101,7 +9665,13 @@ "$ref": "#/components/responses/indices.rollover-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-data-stream/_rollover\n{\n \"conditions\": {\n \"max_age\": \"7d\",\n \"max_docs\": 1000,\n \"max_primary_shard_size\": \"50gb\",\n \"max_primary_shard_docs\": \"2000\"\n }\n}" + } + ] } }, "/_index_template/_simulate_index/{name}": { @@ -9197,7 +9767,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate_index/my-index-000001\n" + } + ] } }, "/_index_template/_simulate": { @@ -9230,7 +9806,13 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" + } + ] } }, "/_index_template/_simulate/{name}": { @@ -9266,7 +9848,13 @@ "$ref": "#/components/responses/indices.simulate_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_index_template/_simulate\n{\n \"index_patterns\": [\"my-index-*\"],\n \"composed_of\": [\"ct2\"],\n \"priority\": 10,\n \"template\": {\n \"settings\": {\n \"index.number_of_replicas\": 1\n }\n }\n}" + } + ] } }, "/_aliases": { @@ -9639,7 +10227,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/chat_completion/openai-completion/_stream\n{\n \"model\": \"gpt-4o\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is Elastic?\"\n }\n ]\n}" + } + ] } }, "/_inference/completion/{inference_id}": { @@ -9729,7 +10323,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/completion/openai_chat_completions\n{\n \"input\": \"What is Elastic?\"\n}" + } + ] } }, "/_inference/{inference_id}": { @@ -10034,7 +10634,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/alibabacloud_ai_search_completion\n{\n \"service\": \"alibabacloud-ai-search\",\n \"service_settings\": {\n \"host\" : \"default-j01.platform-cn-shanghai.opensearch.aliyuncs.com\",\n \"api_key\": \"AlibabaCloud-API-Key\",\n \"service_id\": \"ops-qwen-turbo\",\n \"workspace\" : \"default\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{amazonbedrock_inference_id}": { @@ -10120,7 +10726,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/amazon_bedrock_embeddings\n{\n \"service\": \"amazonbedrock\",\n \"service_settings\": {\n \"access_key\": \"AWS-access-key\",\n \"secret_key\": \"AWS-secret-key\",\n \"region\": \"us-east-1\",\n \"provider\": \"amazontitan\",\n \"model\": \"amazon.titan-embed-text-v2:0\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{anthropic_inference_id}": { @@ -10200,7 +10812,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/anthropic_completion\n{\n \"service\": \"anthropic\",\n \"service_settings\": {\n \"api_key\": \"Anthropic-Api-Key\",\n \"model_id\": \"Model-ID\"\n },\n \"task_settings\": {\n \"max_tokens\": 1024\n }\n}" + } + ] } }, "/_inference/{task_type}/{azureaistudio_inference_id}": { @@ -10286,7 +10904,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/azure_ai_studio_embeddings\n{\n \"service\": \"azureaistudio\",\n \"service_settings\": {\n \"api_key\": \"Azure-AI-Studio-API-key\",\n \"target\": \"Target-Uri\",\n \"provider\": \"openai\",\n \"endpoint_type\": \"token\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{azureopenai_inference_id}": { @@ -10372,7 +10996,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/azure_openai_embeddings\n{\n \"service\": \"azureopenai\",\n \"service_settings\": {\n \"api_key\": \"Api-Key\",\n \"resource_name\": \"Resource-name\",\n \"deployment_id\": \"Deployment-id\",\n \"api_version\": \"2024-02-01\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{cohere_inference_id}": { @@ -10458,7 +11088,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/cohere-embeddings\n{\n \"service\": \"cohere\",\n \"service_settings\": {\n \"api_key\": \"Cohere-Api-key\",\n \"model_id\": \"embed-english-light-v3.0\",\n \"embedding_type\": \"byte\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{elasticsearch_inference_id}": { @@ -10570,7 +11206,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elasticsearch\",\n \"service_settings\": {\n \"adaptive_allocations\": { \n \"enabled\": true,\n \"min_number_of_allocations\": 1,\n \"max_number_of_allocations\": 4\n },\n \"num_threads\": 1,\n \"model_id\": \".elser_model_2\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{elser_inference_id}": { @@ -10660,7 +11302,13 @@ } }, "deprecated": true, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/sparse_embedding/my-elser-model\n{\n \"service\": \"elser\",\n \"service_settings\": {\n \"num_allocations\": 1,\n \"num_threads\": 1\n }\n}" + } + ] } }, "/_inference/{task_type}/{googleaistudio_inference_id}": { @@ -10738,7 +11386,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/completion/google_ai_studio_completion\n{\n \"service\": \"googleaistudio\",\n \"service_settings\": {\n \"api_key\": \"api-key\",\n \"model_id\": \"model-id\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{googlevertexai_inference_id}": { @@ -10824,7 +11478,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/google_vertex_ai_embeddingss\n{\n \"service\": \"googlevertexai\",\n \"service_settings\": {\n \"service_account_json\": \"service-account-json\",\n \"model_id\": \"model-id\",\n \"location\": \"location\",\n \"project_id\": \"project-id\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{huggingface_inference_id}": { @@ -10902,7 +11562,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/hugging-face-embeddings\n{\n \"service\": \"hugging_face\",\n \"service_settings\": {\n \"api_key\": \"hugging-face-access-token\", \n \"url\": \"url-endpoint\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{jinaai_inference_id}": { @@ -10988,7 +11654,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/jinaai-embeddings\n{\n \"service\": \"jinaai\",\n \"service_settings\": {\n \"model_id\": \"jina-embeddings-v3\",\n \"api_key\": \"JinaAi-Api-key\"\n }\n}" + } + ] } }, "/_inference/{task_type}/{mistral_inference_id}": { @@ -11065,7 +11737,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/mistral-embeddings-test\n{\n \"service\": \"mistral\",\n \"service_settings\": {\n \"api_key\": \"Mistral-API-Key\",\n \"model\": \"mistral-embed\" \n }\n}" + } + ] } }, "/_inference/{task_type}/{openai_inference_id}": { @@ -11151,7 +11829,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"openai\",\n \"service_settings\": {\n \"api_key\": \"OpenAI-API-Key\",\n \"model_id\": \"text-embedding-3-small\",\n \"dimensions\": 128\n }\n}" + } + ] } }, "/_inference/{task_type}/{voyageai_inference_id}": { @@ -11237,7 +11921,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/openai-embeddings\n{\n \"service\": \"voyageai\",\n \"service_settings\": {\n \"model_id\": \"voyage-3-large\",\n \"dimensions\": 512\n }\n}" + } + ] } }, "/_inference/{task_type}/{watsonx_inference_id}": { @@ -11311,7 +12001,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _inference/text_embedding/watsonx-embeddings\n{\n \"service\": \"watsonxai\",\n \"service_settings\": {\n \"api_key\": \"Watsonx-API-Key\", \n \"url\": \"Wastonx-URL\", \n \"model_id\": \"ibm/slate-30m-english-rtrvr\",\n \"project_id\": \"IBM-Cloud-ID\", \n \"api_version\": \"2024-03-14\"\n }\n}" + } + ] } }, "/_inference/rerank/{inference_id}": { @@ -11406,7 +12102,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/rerank/cohere_rerank\n{\n \"input\": [\"luke\", \"like\", \"leia\", \"chewy\",\"r2d2\", \"star\", \"wars\"],\n \"query\": \"star wars main character\"\n}" + } + ] } }, "/_inference/sparse_embedding/{inference_id}": { @@ -11496,7 +12198,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/sparse_embedding/my-elser-model\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\"\n}" + } + ] } }, "/_inference/text_embedding/{inference_id}": { @@ -11586,7 +12294,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _inference/text_embedding/my-cohere-endpoint\n{\n \"input\": \"The sky above the port was the color of television tuned to a dead channel.\",\n \"task_settings\": {\n \"input_type\": \"ingest\"\n }\n}" + } + ] } }, "/": { @@ -11639,7 +12353,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /\n" + } + ] }, "head": { "tags": [ @@ -11804,7 +12524,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _ingest/pipeline/my-pipeline-id\n{\n \"description\" : \"My optional pipeline description\",\n \"processors\" : [\n {\n \"set\" : {\n \"description\" : \"My optional processor description\",\n \"field\": \"my-keyword-field\",\n \"value\": \"foo\"\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -11949,7 +12675,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -11971,7 +12703,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_ingest/pipeline/{id}/_simulate": { @@ -11998,7 +12736,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -12023,7 +12767,13 @@ "$ref": "#/components/responses/ingest.simulate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_ingest/pipeline/_simulate\n{\n \"pipeline\" :\n {\n \"description\": \"_description\",\n \"processors\": [\n {\n \"set\" : {\n \"field\" : \"field2\",\n \"value\" : \"_value\"\n }\n }\n ]\n },\n \"docs\": [\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"bar\"\n }\n },\n {\n \"_index\": \"index\",\n \"_id\": \"id\",\n \"_source\": {\n \"foo\": \"rab\"\n }\n }\n ]\n}" + } + ] } }, "/_license": { @@ -12082,7 +12832,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_license\n" + } + ] } }, "/_logstash/pipeline/{id}": { @@ -12106,7 +12862,13 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _logstash/pipeline/my_pipeline\n" + } + ] }, "put": { "tags": [ @@ -12156,7 +12918,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _logstash/pipeline/my_pipeline\n{\n \"description\": \"Sample pipeline for illustration purposes\",\n \"last_modified\": \"2021-01-02T02:50:51.250Z\",\n \"pipeline_metadata\": {\n \"type\": \"logstash_pipeline\",\n \"version\": 1\n },\n \"username\": \"elastic\",\n \"pipeline\": \"input {}\\\\n filter { grok {} }\\\\n output {}\",\n \"pipeline_settings\": {\n \"pipeline.workers\": 1,\n \"pipeline.batch.size\": 125,\n \"pipeline.batch.delay\": 50,\n \"queue.type\": \"memory\",\n \"queue.max_bytes\": \"1gb\",\n \"queue.checkpoint.writes\": 1024\n }\n}" + } + ] }, "delete": { "tags": [ @@ -12208,7 +12976,13 @@ "$ref": "#/components/responses/logstash.get_pipeline-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _logstash/pipeline/my_pipeline\n" + } + ] } }, "/_mget": { @@ -12253,7 +13027,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -12296,7 +13076,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] } }, "/{index}/_mget": { @@ -12344,7 +13130,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -12390,7 +13182,13 @@ "$ref": "#/components/responses/mget-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_mget\n{\n \"docs\": [\n {\n \"_id\": \"1\"\n },\n {\n \"_id\": \"2\"\n }\n ]\n}" + } + ] } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -14223,7 +15021,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/anomaly_detectors/_estimate_model_memory\n{\n \"analysis_config\": {\n \"bucket_span\": \"5m\",\n \"detectors\": [\n {\n \"function\": \"sum\",\n \"field_name\": \"bytes\",\n \"by_field_name\": \"status\",\n \"partition_field_name\": \"app\"\n }\n ],\n \"influencers\": [\n \"source_ip\",\n \"dest_ip\"\n ]\n },\n \"overall_cardinality\": {\n \"status\": 10,\n \"app\": 50\n },\n \"max_bucket_cardinality\": {\n \"source_ip\": 300,\n \"dest_ip\": 30\n }\n}" + } + ] } }, "/_ml/data_frame/_evaluate": { @@ -14326,7 +15130,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _ml/data_frame/_evaluate\n{\n \"index\": \"animal_classification\",\n \"evaluation\": {\n \"classification\": {\n \"actual_field\": \"animal_class\",\n \"predicted_field\": \"ml.animal_class_prediction\",\n \"metrics\": {\n \"multiclass_confusion_matrix\": {}\n }\n }\n }\n}" + } + ] } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -17138,7 +17948,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] }, "post": { "tags": [ @@ -17175,7 +17991,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] } }, "/{index}/_msearch/template": { @@ -17217,7 +18039,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] }, "post": { "tags": [ @@ -17257,7 +18085,13 @@ "$ref": "#/components/responses/msearch_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_msearch/template\n{ }\n{ \"id\": \"my-search-template\", \"params\": { \"query_string\": \"hello world\", \"from\": 0, \"size\": 10 }}\n{ }\n{ \"id\": \"my-other-search-template\", \"params\": { \"query_type\": \"match_all\" }}" + } + ] } }, "/_mtermvectors": { @@ -17314,7 +18148,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -17369,7 +18209,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] } }, "/{index}/_mtermvectors": { @@ -17429,7 +18275,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -17487,7 +18339,13 @@ "$ref": "#/components/responses/mtermvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_mtermvectors\n{\n \"docs\": [\n {\n \"_id\": \"2\",\n \"fields\": [\n \"message\"\n ],\n \"term_statistics\": true\n },\n {\n \"_id\": \"1\"\n }\n ]\n}" + } + ] } }, "/{index}/_pit": { @@ -17626,7 +18484,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /my-index-000001/_pit?keep_alive=1m&allow_partial_search_results=true\n" + } + ] } }, "/_scripts/{id}/{context}": { @@ -17665,7 +18529,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -17702,7 +18572,13 @@ "$ref": "#/components/responses/put_script-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _scripts/my-search-template\n{\n \"script\": {\n \"lang\": \"mustache\",\n \"source\": {\n \"query\": {\n \"match\": {\n \"message\": \"{{query_string}}\"\n }\n },\n \"from\": \"{{from}}\",\n \"size\": \"{{size}}\"\n }\n }\n}" + } + ] } }, "/_query_rules/{ruleset_id}/_rule/{rule_id}": { @@ -17758,7 +18634,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/my-ruleset/_rule/my-rule1\n" + } + ] }, "put": { "tags": [ @@ -17857,7 +18739,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _query_rules/my-ruleset/_test\n{\n \"match_criteria\": {\n \"query_string\": \"puggles\"\n }\n}" + } + ] }, "delete": { "tags": [ @@ -17944,7 +18832,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/my-ruleset/\n" + } + ] }, "put": { "tags": [ @@ -18023,7 +18917,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" + } + ] }, "delete": { "tags": [ @@ -18123,7 +19023,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _query_rules/?from=0&size=3\n" + } + ] } }, "/_query_rules/{ruleset_id}/_test": { @@ -18208,7 +19114,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _query_rules/my-ruleset\n{\n \"rules\": [\n {\n \"rule_id\": \"my-rule1\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"contains\",\n \"metadata\": \"user_query\",\n \"values\": [ \"pugs\", \"puggles\" ]\n },\n {\n \"type\": \"exact\",\n \"metadata\": \"user_country\",\n \"values\": [ \"us\" ]\n }\n ],\n \"actions\": {\n \"ids\": [\n \"id1\",\n \"id2\"\n ]\n }\n },\n {\n \"rule_id\": \"my-rule2\",\n \"type\": \"pinned\",\n \"criteria\": [\n {\n \"type\": \"fuzzy\",\n \"metadata\": \"user_query\",\n \"values\": [ \"rescue dogs\" ]\n }\n ],\n \"actions\": {\n \"docs\": [\n {\n \"_index\": \"index1\",\n \"_id\": \"id3\"\n },\n {\n \"_index\": \"index2\",\n \"_id\": \"id4\"\n }\n ]\n }\n }\n ]\n}" + } + ] } }, "/_rank_eval": { @@ -18612,7 +19524,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _reindex\n{\n \"source\": {\n \"index\": [\"my-index-000001\", \"my-index-000002\"]\n },\n \"dest\": {\n \"index\": \"my-new-index-000002\"\n }\n}" + } + ] } }, "/_render/template": { @@ -18631,7 +19549,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -18648,7 +19572,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] } }, "/_render/template/{id}": { @@ -18672,7 +19602,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -18694,7 +19630,13 @@ "$ref": "#/components/responses/render_search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _render/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 20,\n \"size\": 10\n }\n}" + } + ] } }, "/_scripts/painless/_execute": { @@ -18713,7 +19655,13 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -18730,7 +19678,13 @@ "$ref": "#/components/responses/scripts_painless_execute-200" } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_scripts/painless/_execute\n{\n \"script\": {\n \"source\": \"params.count / params.total\",\n \"params\": {\n \"count\": 100.0,\n \"total\": 1000.0\n }\n }\n}" + } + ] } }, "/_search": { @@ -18883,7 +19837,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -19034,7 +19994,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } }, "/{index}/_search": { @@ -19190,7 +20156,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -19344,7 +20316,13 @@ "$ref": "#/components/responses/search-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_search?from=40&size=20\n{\n \"query\": {\n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } }, "/_application/search_application/{name}": { @@ -19385,7 +20363,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/search_application/my-app/\n" + } + ] }, "put": { "tags": [ @@ -19452,7 +20436,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _application/search_application/my-app\n{\n \"indices\": [ \"index1\", \"index2\" ],\n \"template\": {\n \"script\": {\n \"source\": {\n \"query\": {\n \"query_string\": {\n \"query\": \"{{query_string}}\",\n \"default_field\": \"{{default_field}}\"\n }\n }\n },\n \"params\": {\n \"query_string\": \"*\",\n \"default_field\": \"*\"\n }\n },\n \"dictionary\": {\n \"properties\": {\n \"query_string\": {\n \"type\": \"string\"\n },\n \"default_field\": {\n \"type\": \"string\",\n \"enum\": [\n \"title\",\n \"description\"\n ]\n },\n \"additionalProperties\": false\n },\n \"required\": [\n \"query_string\"\n ]\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -19507,7 +20497,13 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/analytics/my*\n" + } + ] }, "put": { "tags": [ @@ -19592,7 +20588,13 @@ } }, "deprecated": true, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/analytics/my*\n" + } + ] } }, "/_application/search_application": { @@ -19668,7 +20670,13 @@ } } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _application/search_application?from=0&size=3&q=app*\n" + } + ] } }, "/_application/search_application/{name}/_search": { @@ -19695,7 +20703,13 @@ "$ref": "#/components/responses/search_application.search-200" } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" + } + ] }, "post": { "tags": [ @@ -19720,7 +20734,13 @@ "$ref": "#/components/responses/search_application.search-200" } }, - "x-state": "Beta" + "x-state": "Beta", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _application/search_application/my-app/_search\n{\n \"params\": {\n \"query_string\": \"my first query\",\n \"text_fields\": [\n {\"name\": \"title\", \"boost\": 5},\n {\"name\": \"description\", \"boost\": 1}\n ]\n }\n}" + } + ] } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -19780,7 +20800,13 @@ "$ref": "#/components/responses/search_mvt-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -19838,7 +20864,13 @@ "$ref": "#/components/responses/search_mvt-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET museums/_mvt/location/13/4207/2692\n{\n \"grid_agg\": \"geotile\",\n \"grid_precision\": 2,\n \"fields\": [\n \"name\",\n \"price\"\n ],\n \"query\": {\n \"term\": {\n \"included\": true\n }\n },\n \"aggs\": {\n \"min_price\": {\n \"min\": {\n \"field\": \"price\"\n }\n },\n \"max_price\": {\n \"max\": {\n \"field\": \"price\"\n }\n },\n \"avg_price\": {\n \"avg\": {\n \"field\": \"price\"\n }\n }\n }\n}" + } + ] } }, "/_search/template": { @@ -19900,7 +20932,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -19960,7 +20998,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] } }, "/{index}/_search/template": { @@ -20025,7 +21069,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] }, "post": { "tags": [ @@ -20088,7 +21138,13 @@ "$ref": "#/components/responses/search_template-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET my-index/_search/template\n{\n \"id\": \"my-search-template\",\n \"params\": {\n \"query_string\": \"hello world\",\n \"from\": 0,\n \"size\": 10\n }\n}" + } + ] } }, "/_security/_authenticate": { @@ -20180,7 +21236,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_authenticate\n" + } + ] } }, "/_security/api_key": { @@ -20308,7 +21370,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/api_key?id=VuaCfGcBCdbkQm-e5aOx&with_limited_by=true\n" + } + ] }, "put": { "tags": [ @@ -20333,7 +21401,13 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -20358,7 +21432,13 @@ "$ref": "#/components/responses/security.create_api_key-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/api_key\n{\n \"name\": \"my-api-key\",\n \"expiration\": \"1d\", \n \"role_descriptors\": { \n \"role-a\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-a*\"],\n \"privileges\": [\"read\"]\n }\n ]\n },\n \"role-b\": {\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [\"index-b*\"],\n \"privileges\": [\"all\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"application\": \"my-application\",\n \"environment\": {\n \"level\": 1,\n \"trusted\": true,\n \"tags\": [\"dev\", \"staging\"]\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -20485,7 +21565,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/api_key\n{\n \"ids\" : [ \"VuaCfGcBCdbkQm-e5aOx\" ]\n}" + } + ] } }, "/_security/role/{name}": { @@ -20506,7 +21592,13 @@ "$ref": "#/components/responses/security.get_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role/my_admin_role\n" + } + ] }, "put": { "tags": [ @@ -20534,7 +21626,13 @@ "$ref": "#/components/responses/security.put_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" + } + ] }, "post": { "tags": [ @@ -20562,7 +21660,13 @@ "$ref": "#/components/responses/security.put_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/role/my_admin_role\n{\n \"description\": \"Grants full access to all management features within the cluster.\",\n \"cluster\": [\"all\"],\n \"indices\": [\n {\n \"names\": [ \"index1\", \"index2\" ],\n \"privileges\": [\"all\"],\n \"field_security\" : { // optional\n \"grant\" : [ \"title\", \"body\" ]\n },\n \"query\": \"{\\\"match\\\": {\\\"title\\\": \\\"foo\\\"}}\" // optional\n }\n ],\n \"applications\": [\n {\n \"application\": \"myapp\",\n \"privileges\": [ \"admin\", \"read\" ],\n \"resources\": [ \"*\" ]\n }\n ],\n \"run_as\": [ \"other_user\" ], // optional\n \"metadata\" : { // optional\n \"version\" : 1\n }\n}" + } + ] }, "delete": { "tags": [ @@ -20621,7 +21725,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE /_security/role/my_admin_role\n" + } + ] } }, "/_security/privilege/_builtin": { @@ -20673,7 +21783,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/privilege/_builtin\n" + } + ] } }, "/_security/role": { @@ -20689,7 +21805,13 @@ "$ref": "#/components/responses/security.get_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/role/my_admin_role\n" + } + ] } }, "/_security/user/_has_privileges": { @@ -20711,7 +21833,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -20731,7 +21859,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] } }, "/_security/user/{user}/_has_privileges": { @@ -20758,7 +21892,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] }, "post": { "tags": [ @@ -20783,7 +21923,13 @@ "$ref": "#/components/responses/security.has_privileges-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/user/_has_privileges\n{\n \"cluster\": [ \"monitor\", \"manage\" ],\n \"index\" : [\n {\n \"names\": [ \"suppliers\", \"products\" ],\n \"privileges\": [ \"read\" ]\n },\n {\n \"names\": [ \"inventory\" ],\n \"privileges\" : [ \"read\", \"write\" ]\n }\n ],\n \"application\": [\n {\n \"application\": \"inventory_manager\",\n \"privileges\" : [ \"read\", \"data:write/inventory\" ],\n \"resources\" : [ \"product/1852563\" ]\n }\n ]\n}" + } + ] } }, "/_security/_query/api_key": { @@ -20813,7 +21959,13 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -20841,7 +21993,13 @@ "$ref": "#/components/responses/security.query_api_keys-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /_security/_query/api_key?with_limited_by=true\n{\n \"query\": {\n \"ids\": {\n \"values\": [\n \"VuaCfGcBCdbkQm-e5aOx\"\n ]\n }\n }\n}" + } + ] } }, "/_security/_query/role": { @@ -20860,7 +22018,13 @@ "$ref": "#/components/responses/security.query_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" + } + ] }, "post": { "tags": [ @@ -20877,7 +22041,13 @@ "$ref": "#/components/responses/security.query_role-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST /_security/_query/role\n{\n \"sort\": [\"name\"]\n}" + } + ] } }, "/_security/api_key/{id}": { @@ -20965,7 +22135,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT /_security/api_key/VuaCfGcBCdbkQm-e5aOx\n{\n \"role_descriptors\": {\n \"role-a\": {\n \"indices\": [\n {\n \"names\": [\"*\"],\n \"privileges\": [\"write\"]\n }\n ]\n }\n },\n \"metadata\": {\n \"environment\": {\n \"level\": 2,\n \"trusted\": true,\n \"tags\": [\"production\"]\n }\n }\n}" + } + ] } }, "/_sql/close": { @@ -21020,7 +22196,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/close\n{\n \"cursor\": \"sDXF1ZXJ5QW5kRmV0Y2gBAAAAAAAAAAEWYUpOYklQMHhRUEtld3RsNnFtYU1hQQ==:BAFmBGRhdGUBZgVsaWtlcwFzB21lc3NhZ2UBZgR1c2Vy9f///w8=\"\n}" + } + ] } }, "/_sql/async/delete/{id}": { @@ -21259,7 +22441,13 @@ "$ref": "#/components/responses/sql.query-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" + } + ] }, "post": { "tags": [ @@ -21281,7 +22469,13 @@ "$ref": "#/components/responses/sql.query-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql?format=txt\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC LIMIT 5\"\n}" + } + ] } }, "/_sql/translate": { @@ -21300,7 +22494,13 @@ "$ref": "#/components/responses/sql.translate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" + } + ] }, "post": { "tags": [ @@ -21317,7 +22517,13 @@ "$ref": "#/components/responses/sql.translate-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _sql/translate\n{\n \"query\": \"SELECT * FROM library ORDER BY page_count DESC\",\n \"fetch_size\": 10\n}" + } + ] } }, "/_synonyms/{id}": { @@ -21395,7 +22601,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms/my-synonyms-set\n" + } + ] }, "put": { "tags": [ @@ -21556,7 +22768,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms/my-synonyms-set/test-1\n" + } + ] }, "put": { "tags": [ @@ -21632,7 +22850,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _synonyms/my-synonyms-set/test-1\n{\n \"synonyms\": \"hello, hi, howdy\"\n}" + } + ] }, "delete": { "tags": [ @@ -21683,7 +22907,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "DELETE _synonyms/my-synonyms-set/test-1\n" + } + ] } }, "/_synonyms": { @@ -21751,7 +22981,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _synonyms\n" + } + ] } }, "/_tasks/{task_id}": { @@ -21837,7 +23073,13 @@ } } }, - "x-state": "Technical preview" + "x-state": "Technical preview", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET _tasks?actions=cluster:*\n" + } + ] } }, "/{index}/_terms_enum": { @@ -21861,7 +23103,13 @@ "$ref": "#/components/responses/terms_enum-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" + } + ] }, "post": { "tags": [ @@ -21883,7 +23131,13 @@ "$ref": "#/components/responses/terms_enum-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST stackoverflow/_terms_enum\n{\n \"field\" : \"tags\",\n \"string\" : \"kiba\"\n}" + } + ] } }, "/{index}/_termvectors/{id}": { @@ -21943,7 +23197,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] }, "post": { "tags": [ @@ -22001,7 +23261,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] } }, "/{index}/_termvectors": { @@ -22058,7 +23324,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] }, "post": { "tags": [ @@ -22113,7 +23385,13 @@ "$ref": "#/components/responses/termvectors-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "GET /my-index-000001/_termvectors/1\n{\n \"fields\" : [\"text\"],\n \"offsets\" : true,\n \"payloads\" : true,\n \"positions\" : true,\n \"term_statistics\" : true,\n \"field_statistics\" : true\n}" + } + ] } }, "/_transform/{transform_id}": { @@ -22265,7 +23543,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "PUT _transform/ecommerce_transform1\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" + } + ] }, "delete": { "tags": [ @@ -22488,7 +23772,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -22513,7 +23803,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] } }, "/_transform/_preview": { @@ -22537,7 +23833,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] }, "post": { "tags": [ @@ -22559,7 +23861,13 @@ "$ref": "#/components/responses/transform.preview_transform-200" } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/_preview\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\"\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n }\n}" + } + ] } }, "/_transform/{transform_id}/_reset": { @@ -22994,7 +24302,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST _transform/simple-kibana-ecomm-pivot/_update\n{\n \"source\": {\n \"index\": \"kibana_sample_data_ecommerce\",\n \"query\": {\n \"term\": {\n \"geoip.continent_name\": {\n \"value\": \"Asia\"\n }\n }\n }\n },\n \"pivot\": {\n \"group_by\": {\n \"customer_id\": {\n \"terms\": {\n \"field\": \"customer_id\",\n \"missing_bucket\": true\n }\n }\n },\n \"aggregations\": {\n \"max_price\": {\n \"max\": {\n \"field\": \"taxful_total_price\"\n }\n }\n }\n },\n \"description\": \"Maximum priced ecommerce data by customer_id in Asia\",\n \"dest\": {\n \"index\": \"kibana_sample_data_ecommerce_transform1\",\n \"pipeline\": \"add_timestamp_pipeline\"\n },\n \"frequency\": \"5m\",\n \"sync\": {\n \"time\": {\n \"field\": \"order_date\",\n \"delay\": \"60s\"\n }\n },\n \"retention_policy\": {\n \"time\": {\n \"field\": \"order_date\",\n \"max_age\": \"30d\"\n }\n }\n}" + } + ] } }, "/{index}/_update/{id}": { @@ -23273,7 +24587,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST test/_update/1\n{\n \"script\" : {\n \"source\": \"ctx._source.counter += params.count\",\n \"lang\": \"painless\",\n \"params\" : {\n \"count\" : 4\n }\n }\n}" + } + ] } }, "/{index}/_update_by_query": { @@ -23736,7 +25056,13 @@ } } }, - "x-state": "Generally available" + "x-state": "Generally available", + "x-codeSamples": [ + { + "lang": "Console", + "source": "POST my-index-000001/_update_by_query?conflicts=proceed\n{\n \"query\": { \n \"term\": {\n \"user.id\": \"kimchy\"\n }\n }\n}" + } + ] } } }, From cf3fe803231604ea164ef8f0c424a1e0d57ef77e Mon Sep 17 00:00:00 2001 From: Laura Trotta Date: Mon, 9 Jun 2025 10:17:01 +0200 Subject: [PATCH 6/6] addressing review --- .../clients_schema_to_openapi/src/lib.rs | 12 ++++++------ .../clients_schema_to_openapi/src/paths.rs | 9 ++++----- .../pkg/compiler_wasm_lib_bg.wasm | Bin 710116 -> 709574 bytes 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index 0a97dbe534..1eeee26407 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -104,7 +104,7 @@ pub fn convert_expanded_schema(model: &IndexedModel, config: &Configuration) -> continue; } } - paths::add_endpoint(endpoint, &mut tac, &mut openapi.paths, &config.flavor)?; + paths::add_endpoint(endpoint, &mut tac, &mut openapi.paths)?; } // // Sort maps to ensure output stability @@ -164,19 +164,19 @@ pub fn convert_availabilities(availabilities: &Option, flavor: & let stab = stability.clone().unwrap_or(Stability::Stable); let mut since_str = "".to_string(); if let Some(since) = since { - since_str = "; Added in ".to_string() + since; + since_str = format!("; Added in {since}"); } match stab { Stability::Beta => { - let beta_since = "Beta".to_string() + &since_str; + let beta_since = format!("Beta{since_str}"); result.insert("x-state".to_string(), Value::String(beta_since)); } Stability::Experimental => { - let exp_since = "Technical preview".to_string() + &since_str; + let exp_since = format!("Technical preview{since_str}"); result.insert("x-state".to_string(), Value::String(exp_since)); } - Stability::Stable => { - let stable_since = "Generally available".to_string() + &since_str; + Stability::Stable => { + let stable_since = format!("Generally available{since_str}"); result.insert("x-state".to_string(), Value::String(stable_since)); } } diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index 6d21eece72..87292c54dc 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -19,7 +19,7 @@ use std::collections::HashMap; use std::fmt::Write; use anyhow::{anyhow, bail}; -use clients_schema::{Flavor, Property}; +use clients_schema::{Property}; use indexmap::IndexMap; use indexmap::indexmap; use icu_segmenter::SentenceSegmenter; @@ -37,8 +37,7 @@ use crate::convert_availabilities; pub fn add_endpoint( endpoint: &clients_schema::Endpoint, tac: &mut TypesAndComponents, - out: &mut Paths, - flavor: &Option + out: &mut Paths ) -> anyhow::Result<()> { if endpoint.request.is_none() { // tracing::warn!("Endpoint {} is missing a request -- ignored", &endpoint.name); @@ -256,7 +255,7 @@ pub fn add_endpoint( let sum_desc = split_summary_desc(&endpoint.description); // add the x-state extension for availability - let mut extensions = crate::availability_as_extensions(&endpoint.availability, flavor); + let mut extensions = crate::availability_as_extensions(&endpoint.availability, &tac.config.flavor); // add the x-codeSamples extension let mut code_samples = vec![]; @@ -290,7 +289,7 @@ pub fn add_endpoint( if !code_samples.is_empty() { extensions.insert("x-codeSamples".to_string(), serde_json::json!(code_samples)); } - let mut ext_availability = crate::availability_as_extensions(&endpoint.availability, flavor); + let mut ext_availability = crate::availability_as_extensions(&endpoint.availability, &tac.config.flavor); extensions.append(&mut ext_availability); // Create the operation, it will be repeated if we have several methods diff --git a/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm b/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm index 86a8e552f03032d51e7fa62bd8b4645238c4fc5c..e3b49bc08281300318317b49f9706ce2d94480d1 100644 GIT binary patch delta 67897 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 TZQ$H2aDy&4llgS1t6Zl5m4l}F delta 68912 zcmb@v33yaRvp+oD=giEREHFtRJ8))zkPw!z@4|^JvV-6Ph>D6!zy(A^flPpaK|vw| zbdW7TFd(2{&=99d^7^7|K|w)LA|RkI!v9x&W+nmg-tW8j!t%|22#1z zZc!DB4OuMq7>nCd^p`qO@lMd5^PbiUlpmBIymK6b*kJ*pyM;gpW1oH58747 zZ;n5-V~#_P9~?&<-#AV?4m(ab{^dC1_}OvX@s;D>j$a%H9A7(5InFu0bA0RAf1Cg1 zH{q%vGgj{K+>EMp?9whcjylR6-#b2coOOKRsBrw~n61sQPPbms)@hemmgA~6Tl>>N z|KG8_W7~-T2enVMOWHy9p<3kF#gAK$XuGxJ*6ff9`(@j&j+M4OfU`sPYHw?0+E>?iGiIg0EvLw>cr zE7eZgZfIAuE%x{AAK2I0*V%pcIrh2s*X>iUXdAWP`>`30|Jdf)7h0z|raL~@X7C%1 zHOd-gHMp6E|JNNez*}}mR>;hd|2SraOb@x_xNhI0>`}hN{{rnx?G?ur?Op9M%W=&1 z_6u`)e${@}HrqDaW)ol9YmQePbC6@5c7<(myzW?}ea!dpy?n0YD`mgBU!9|UpuNub zD$}gLJ66dizRKpI!4KGHYagnIw6D5k9PB#Rt{+K09eZCP5Db{_wy;s0BX<9xQZ+UpFj?OEeEWBXS7$X29n zcAVxX`1_8z>ib#&3NCaMI(}kDwXMoQZI)w;_9uJKLE(ScEQe3~i+$iIMa3w7o%vAK zQSGwhw00bSvqKJQ<=QF4j@S>Q-)Gw@fG1{8XwU8E#g3C&vG$!dU%hPioWThA!M;`d zUR!OwV*k;8)qYt!VV|#*Ye#J#YFX+`ZL7m;pW!&D%~U?qd~BKZ8{4NcQ5nH+XJ6~%3Q9Gmkpsll=)k+*c*|(^<{6pokW1)7~ zx&ZuLP!C$axx@B}+sKZ9BqtI(9jBJGN;bVO;&B{j7~!pnCZ{ zK0epB*I_Y!P(m#szy8r+wRcpFRG$B*_w^b-^W3XNlWV#dEB7vQ-qB)@!xE}9L(9-3 z^(g1y_)y(ytaW5KXF0-@Q0GiLQf<05nQw9!#TRy1oU6QH5j)w7MdcAmR<_c6C3+v* zUbG{|r_|1Ub*CkTTiS68NGxz&;z6<{9@A zTi$s|v1a|oH-CLp^M5^{ezaP%8sTUn`Fx{~xc}3l){SSXY@+wWW{cS@@6hH`Sa#9D z=4lK8Z_yorw^z$-0Q*}SjIHq2Xx#;W`?c=kT*2aX)u>c542!XpIahcWx1QaoDNqG0 zLuXEkm2nvhW1#@fDH*zA+_=HUIh%TWw>k3AXIZ-~Mxt>Bfpdq=5^7u}L>(hVeE09T&7|S|cdwC&Xa=euH(GSGSo9FJ8=@@3 zNYg{mB!lj1%nPP_r`*-D`4%E}0R@4SpG8TU1t6K02iA>v)WCb}uAY2bp|@f0be><} zeX92&UR>y9eL9D2TC>NJ;Z}5uQM|_6yN{djPxon)Qd+pjlFTjr!xi3*chgx9wVScc z#JMd!!fm?cNrO)?K`iMYpxZDpy+QjqN|NTY!eGM>s>f2Z>m2AtI~b zwi=X4nK;318%Nau)i3&wFsUkjs%-|er%F6KAcLcfBLm(eXx_l8D(xHSiU<_T`hs_> zv8&K~ZQ$sh<;0zq%r&=aP#mq6;kFRnLzH3$K)ShZ(Rtqlq)?L@`^~&=4wmxQcnb$5 zv!mYfLA5+b=`)6Gp+*Iw#*KPJYy&#VY=i=esf5d?809p!AtqarfL#O>;|~E822=JE zQ0h;iFqrKS0cDgDjgKf2%y*Q4a_@6@*NQqt(ZiGrnJ5H)^WC*<6%y|)xx3TQs}!yD zXUTpG0AVP9R&`(w0feEHoa(>=0tiDXxf1Yp8&WGOkD>$b#F!kzc`UX#NlUM@tJ;N1RTME4?_dW9uA6wD()-i55{fHJOw0GOEltx-;PzqT{a#AL4)aFOuEP}1%F3eBpa)3dp-W1ETwR7GM3fOZKYip! zAzg;Wc(aB@Cs8i5r>yjhF88{_Bwwe8It@4<2o5vn}1T9jZ~$*{3cuzU6@T;Zsp50pWr&W6_O)ZvqBiCVQ&QFWRJ$Ht&J>KEtNARpKy}t3EROKjBDTjCF z^Xu83q81Y>SaQKZR49_#1%e&z_5s1QOt^~wqX)emCJyHX2fYg?4!@OL(e;TBGv_IM zD0K`&Gs;xwo}y}@K7@w5M6EWc>%Yhw_2 z$G+acdu`6ch*iEG?|pIZC5f9M;b;8Vm*x%i$Ii@KX3N*mYfcgI9gp%Z&wUgrQ{IU8 zCcg2IjBNzz#`D`K>_zXx3xB}hUW<<4Z+&qt@f7Ks|Aszmlv^^4tAJ7zOFM-W*2<#P zyp~FhV7tc3W*xKSc~(1s(^*qXn9F9!B=5zgt#8TgZL@5;chT|@-pJ*3c+O>Si{+!) zRd3qz;ojetw?f-DTrr;kQJg=6XU+6>S@{B=KC@`cO2#~XWwLCZUl9x_lZS%{zcP6y zi0~_uId23$@hg*8a|4JR#Ehm!aS)MzeHUq{6$ngqlNkrGBG21h)Oz*foR{T#m#!(P zd6@G1mAeSzOwm(saaKE9>?YMBEW?nodPZ!9QR&SpY|8g9Eqb?b25(=waA!c>#6-12 zC4syO>zx4Yvpkrj0jdl_H1{gJ8E>Cs|0=p~{k_aqyaF_KdW$x^Yb%q{q9->-um(8- z==oM7*bla39_E6Q1trMEjarzSpL&EBSj##rd%o?nLpi z8L|N98WkWFWt{S-7e#LlXCeMFsgS1cl{Ty@6D%^YsDyE-_&vfQq3OFgog-&t(H$;- zPJom%%=!0Rf`#!&s8{{`dPgJVQCrlm1FZ z_}K?X#(7G@FaXc{-mkA;B#`L}a)#Fo78Z^k=r#r=C3(X?Xc%Z+KRH?OZQAX=51QRB z=WW{V?GN3r;b6f9; zJ4xTl5e2g77}7&%W-aj^-1BePuPj%B==_fBz;KCDi@)O*Y@V_1pR^+j|UuH+tC- z`rGix9c+EkV@F1YMt~GIHbH`h6RB|L#-cBO_?fsXIh))Y+;C$9C+^JB2`;_`PRnqv zw*kLP;sdqdM!AH|T6mlPlv;nj1GB+6W23S_F5GD%4oietxOeJL#P?f2tpvw+{Y<=$ z{kb#hunzJ0-p?iGx1YO!`{w6%hO>o57ynqp*+TE)Yde_N`@mmA*(&emzcTPQ@%mn1 zPF-KjyhWKet}8CD1LC$4jTGVpQz6u}s!<_f6dvN-=v$_++PuSh!kd*+jr^M`rTQBq z&^2nHF{rD&;%6&MW$Q(ZjV)qc@s5q5-Nly_Y!sJmtP@-BYiVbFwa{#|gkr2^aD4f4 zYO?Mj$oF|1i)FLK4{>Z2dt1zoXQ+xe9?zyBcsPOW1u{92y~*D8?M!454B)@&uw4k= ztjop$8&;1URM|P-@%rpj^q+5S68o5eo5z#cYJedrY#HNg&x>`9nc!u+eCeso#v;lW z@3J(vSUOoOFpzkL@uhEA6V^{*E5uvPSy#4C{Lq}iizOPQu}#(Hzc`-8q613-mLG9F zjjildB`z?BYGR)Au;{9}TZ<6Jw-*Al5P51zF|Di4mwey0U`>LH3*?<}wqn86rAq#> z+pI34u8+lv@YXCfWKD36i}coPSf86X3X>c~RdEzy6kh^2(5t1mj*#iq1iRDtn9{MB zgP+r_S%ZL-HS^PI$7z9ucnPj{l(ktKHluoDebfeZ+ab=hVMz#Twq;|YcWC$~G)xVJ z-LuQ$!a88MojXKsThM&sAp*>b|5gusNRb^ zvq3eIu*~hHLbz=0E1g+W-9H78#{qs6|8nWq&FIVSUD&{+-NCO=Gc`=}*G!JKs!1fa zc40{&Ra&Vy+l94hShcX?TTTn7#RYeu^aap#h1rJ*e&-!5h1s%UBs*96#&=~k751i> zp3a8dYV7%bN{1wjmuuXi#0=+L8zx6tB6NIbIXtt@#UimgYr>cA5PiC{Jp1OoFef+c z6=%D%iB%?27^&&v=^kuqds4}bT|1Dg9SPmU3}Xuc=XQbxvtO{5tP~wd$Nc!nlB8{BUx*dAkHG(b@1mA%P$ut|Fr9mpRx@-tS zH>Xhv!L&ESnAKBXobJnB<=eg&&_i&cmR`m;7Q zv%lU2A3(BhPe&{(OXT-wv-$oCkvf3QV7cPm0jvYh{#yJrfUStkZJpgt(Le$Y1fm4| zl7XzPmh~Np66eR_n}Mv;?I;@Ju|W`0KZuosSSGtF^ug>gGiWZh3}$gW>pO8^F#E`)<4||^b-g}I-u&KvG zm?~}*vrZlrBPthL7-%vy+UE+5qy>z`c{0xhs%JO`7fl3BmuY!uZG0o$+9cAX+be4l z>A)r-D4qX6$p1YY{`L$*oZfCpwpcuEv2I(9TtF!nOFICHkq2ebW`vTnQqiq#!H!v8 zE<)m!idEeV1}Y*NG!U9zS@;MJcravsr=)=WcFH7FeHLk;*svpR1BuEcxG^BMJ-i$J z$Ed{|HkWJkQooYmx zj9`E3Z`DIJ(Dr5p5eZbV4BHl_M=wwZS;20i?lx9O-2V{^uerIZTxPs;TFm>9HK>8T z$f{a*6LYq)cyZ!G7H6eiS4G#4Se)pzjfD)`vG3q(HsU$JBkf_BEiZcjR02Kl4=l#s zmP03T*x0y*IobPWY4*0ffmx1@0L75&FB|=Q6YEaNx<^XUx#)W2xoXL9zRPGs&K!DB zfBu`HXEENd>I--pGK}4T;TWXtJlR(tSEUEqA;RBR)K#5LM*o|JNV{!AB+ITEUop0)95zgaS3=MY^%{DlnUVR;T~H05 z&T<)>1sQU5l6nc1@8+npDkqhzNTK*mgM_m3)mr3q~|ho z0l0f1dlngXEM#?&!FO^I#5v#pi%=G`_5nSH)czieS)2NPjU%Y`hrtDKi%Ur?Tg;lL z%_X%Z;BJ8s_Uku{R7y0e(=ESRK)K+>1^H`>*)TRq-1{bbz_t`<=kKEUP1cHiD$czL zGis7}a0z=YU`CL3ba4r*-wmo06el=j`;*o#d11x|qRIo>90WI}(oMy_Lm8yHC+=O! z9*e2cQlTdiv+!NO4TBrZFy62&M<~Tam0C>P0>W8MToyBNYY7+P$8i%^PPiz-Szt!J z%HnH=nj$A~_JH)QYTNw2?u9IqYsEC^lZ^`BzICiOW0j)Tde$s8s{@pl_88~PP%}2B zW6LNjmr!XEm6p*KBa+dG%)KClM;)RRaesu+I-!Qg&sR zC4*)nGb%3oqh!_&*}z7J_^l!uK07wBM?(A-6~WCmvbd1zWF=u01w42otL^dIJ2ZO3 z;Yox`lzJ{a62!M#dQyu@pA>AFY;y>aIT=n~Nyy)LeB#g0BRt@H^&6W~Crh}y7Ty2R;?Y)HVLMNF83&F{}@E(X8D?h05)fe%fNOru>f?GQ9FDpdLon;I}X zsKUM8W&aLLS4vOb#5#l=G0jAR$82JEHa$UbU}h*VaxpDJ1_f+JX;W0W+r*JgtaV7L zORhu~XR3(X%o>NxGKW8r?7x|1R%hW~oBzf_vN--8yF297stMPz2x6rgUsH;1<%TmVE_hSzB=!-n4rgkI{%Ij*nEcR`~gc281F!%`LV8|da#6~xm?Zk zg5#o#^ABn*NJE)5BrIH<^Rf6xs*EloKxXJImcMCc>Pkn8G}k0)zr9YShLaWUY!0&$ z26k{jsntwa@uQE`3;5enAz2Rc-cpWeR1C*THJk5&VvPAJ_JpUHb&m9xOk~2z}7wjg}$j}>|W+rbrCjPva$c7@93xOZAZjPjT9aYQ<}ms z=L(Ca-cbnsS%Mv7sV-Xnqp-u7;SSTI zlCi|$Poncf2ar&I!<;ik|6}Z_+HcWzpbi}Ys70C{mBQ0pnc}l!Sl2RrKOJKQPzikV zPO>{0+u-}^J2slL4Wh$ol#?&kpJp4`S~2Vgc7|s$k^UpAkHp7+WbY7I`wVM<)Q)E) z_Q5mkF<^Z=&#;b+BG=EdowR=M_?hK+8tY0^O9Pjkf`%>|1~Rl29kK-pDLky3@+St^|}nqXXI z<0f{rgo{tlv7`Y7SIrGhj(ts6rj9^!dGxxZv=<}EzuQ^Y*i;SBJ?)fOy{?|wPI00k zD=+TAT7`AaI4rvS!n($unvUHsY?`WMHRaQu8T`*i?yF+KFD$K5PTDwiDZ9)zN2Vx8rj-Z7#A5SD3E2xY7+4G$+v>CMKL`ck<#(V(WR9 zYr9q{NAAE%mgaHL`hq{2TN^`XtQ@*V0^5jnuCYnHORhXJ*WgDAhiViFt}9G}W3VAmU6EkUA^1f$NncAl z+~hH#!4`(L;8>T@#^^c?MTUttFS2&bA-=rGdc=f*wMacokIZncg1DotTJ&0&Xm*J; zL!ObB;Aobm|H&GQMZdF7&cGHd?*@+yX+|f1XHj(my>2IOK%md*9H<=wO+;K~t$ALK zuh(VvD}(>K?NwID_V|upWdj(_q>5&LvRCv&Gcd?#*V(P0i52o}(yWGYUJJqgKYjoD zlik7DK3}cB*j3(0Hjz1DRA?8n$&z^kbGr1TV+}?FVBc@Wo8u$#DCf;XkD^DMf1n8C zoLI*Bd}{tQ95<|a{Z!CovKfD#5*~#Qq{IUX|Ba^kc9lGj`|lCwC*OZ0;#STI48V<;gd++ldk970k;)mA|;gf zb9mr#49EELh|Eylu$d=4YufbeoZS4Tg}xe#Z)bVxnhI9DjRu-xs!CTk{DZ>y7g*fh~0g1>?#W_tv8<5W8->MbD{&PDL# z7AvtlHg|qu)0>e;Hr}~h#h(QZJ%zwH=U)1ghdk|#O88p1o-BGq@)6B%*V*Zg!SIV| zy2ChR#UXGy!O@n(w`)ax4@B~$I+-*AliiWVRqGgV3ZRMGrc>kDk!4&L9#tocq01Gt z3C2SPoL_FL#!NSL4cdlUjd{fIC|(D_q$uu+y0xV;LFu_ywc28P6u*O|E~>>F@k_@= zN-f^CdoN6muw>reoZ-}VIHn$!q4#q3pf<4@#W7fu0t25$FqS`zWQ=GJQg_8M%eA)o`lEUiK~dL8Nf3QKh|zaP1l#i2ftVp|+f>;QcYSgEfeguaF& z@`&7p8hZ^M$s%L#lCc>gSc z_qU;rIvA;&$YYa|jRo&Q0McRtsRI2d12q6EsykFq+~}q;tNO>RI*noBd_EB)+X0d8 zw((3(vs%?9Q(#1&RyBmD4dQWk$Z8J4_`79Zd!$v#$%W)GXSJH4hmLc_LTq7H!&%`W z-XrSph8X|t>QD;>$hcq%Cvu|&-5d;*gVbqre1&HIPfLS5_B z<*wG~8d3+Nu>jIEK&~ck^o#}FOkcRMk*~oUh#5@qLD7CD|-6<;_XyiliTtevB z4f5)85k+w-`E3w_=L$;AFp9)#W&&hM6Aj;%*Hyot*rcqMeIBP$MuwrB0kF`ZeXT zVylbaV_hHOCZgJ&`eB}OqvPPm^hKh-A>0iSAw~QVYFxJ(?pXLo|NLR17?F`oVyMx5~zlv zM-RktpddS9atd!uEWee)`%w5>3ZIBk_GDwej#c_1Q@M+Uo8#PO9Hx^RqFWOl9lzXx zMm}W@KqSZkc!QjLE5&n7cx=itO5cV27@#(z7y`B00Ilk#UBPY=UpL`TM&CSM$dt0U zz|@eY{9%&kG-LpN1aJ_*Gzh{(WN~Lkxo@_eBODAcqWWYr-lrji4+@PXGp-Hq=0XnuZ10*bL(of6 zoUUx~bu-@E100l>_Or5~!_0I~XX(z_=q^2*O#v{|J%gp!o~_SdQn8o<7Sr|FQ-Gc6 z&X!rTsdK?`_-qsoJ;$FV{RW$95EK`0po$$a55 z-*hnHFYzW`ZXy-Tauby*j=*0q3#bq`#D~dldIK;{3{4>&4cq~s{F%^65uaJ;uCviK z&DT1OzszXzK|oep<-{i~0<*7M%iGO9I4`TuK8!4yeF?$Y7pEgmi`rp1`wlV8zS5TF z?E81iYRgz~r0a2DTqL%V6YuU;a^g*CB`03Z)>s&(F}X%zUXfyjDcH9)Z*vWr zW4U0(>zH|>s5QUS;V%UW{EgN;uFf=!M+kjA+_32S7}NwVS!cS1d|%*!=50juINX7d zx~H7CKtJAw_h-|5TiS4iJiWzj`Mo&vRI?qQ?`ebypQP8;T?wvx^?JqztgiRzF1;op z?kD40TFo#ASWeEG;XoRYiwH8|G@2-U*}VS|t{vW+6W5xH~#kq0P= zA}NThrARYGpu@SE3%xy$@Qeg_<}=_QL}V$v!>)%2^C=<^BT`I}QHT^!(j$nJ;oJHM zE3rPg9z|q7SwDRcx%4?Ak0El3FntjzrAP}z%D+HlG$LCF(+`og6zQ)w2744608}MK z9!KOFOu~T(%Md<+Fpv0qQheKSxdi`X8I$Wg*PkH}#vZvrA^6nO!Wwe;0QL}D*druK-H zQ{+WNDyXbUVtxni?l}l>5!O3bE9#(9vb+&)W3EP&5d|6Qc-Kpamx8ZEgg(kVm@?%v zzsc=-S^U`nqvS0yxFc5fx5W64kXpM=h;!CDL#s$9i%T>r7NJ@_sK9nH~V#Xv-f-@+1gS1H~ z`7?k*P;61LByA-Dikm`$67`Oz6J$wNAvUQo(5u`zBNTHgls373zqiPhbB%Y;T`vdCRYxa895 zRGoB!LI-UmD!YN?LebCQl?b||^H#PEUrGP+#B}}yYb1`R!v<_5>fFieM>fiU<_c>F zmM3Ys9N*u4CxmAsk#i?MhT!q;yss@Y6!pv$zV6Va7m5?z`6OQcqZrnM_l1VJrU!56 zIj6xQP+$c~R^_%bwnFqq;0Wz#96A98c9QQboDN>(FyqW2Vu>(N=x)K#S9B2LRPZYZ zp6Cp{p5D_ri*D6Gt-chkTTyZR!wsNwVqi~RkM$DI_T(4&xuc?2AKqEy_u~C|?lEz` z7jI}^bPNioI3^PA;_FrTxVZ52Tw<8LyD27~?#)}WyF`9(zQ$khD^zBApK4`Z>jQtoEHR}okN@Wa zi-QIJ))&g*EK#E$G~2RcqE$bBiuDwA`}6ytt4-_=yEG<=R!Y@fM-Rp1g${s4P12StcLI0&0m6*mOO+%jbPCbKCgz~`f{$e>kj8S(P}84TXUa-u2zEs#lVrd zS>nJ@tf~7%oqKrG^ne@HkcZ+lx|6GO@k_~|~r8Nt%~`64z>v>L{H#SJ1O z586s+8cc(#%)d#(JB)W`6GizjUYku2KMdokY=np$&SwPdfK9`BliSzjj7*IuAnc^W}sgqtE!5_yFhu=nEa%1$QjpT729LC`Wj?Oz}q%_1Isi^6XWYzXZ z^5X+}>IL$^$t%AqYYgMv`KDdBIrGVFa!A6jV2i{FfyIrbjivezs}Tu7^`BZaL6nW; z4`Qqox|7DiUcS{Aktw=8$XkSvrUl{Q&@+9LALJ!ckA%@B^+@uxJ6DK45A&BzEAGI< zem&A=T5%$Jl<84^eAI2#K^xW)-}+G)0nz`!!{?9O#DmZt<#)3rG2&7FHWV}4WBehw z3Lk%rr$N*SGbnqEzvekZ0!1-z_Q58GHEc6}u7-2^alaByUU9VO5q{hS!pYl}7QMC~ zca?DRswA8ae%y^}-^TfIGmayl)mc+sF^u;kbB>FXqj@b}a9ms&&Cl6P=_<}X&fjxB zivb?0Kchc~P=5p#{Q4(&1NNvWe}d0t9`WFlyajtv=7HP&z{L zdy;oGU(_7~7uhJ$Wegu!L%Q`g^(IBcpA=m)M1R=%J<0p4khSh4Q8I>ip=ko=V?}S0 zB@YR0EZilMQnV7HKPc`U%bPZz4119rF3?$!mlwytFWHm6I^36p9DUx`1(VC#)H0{P zYl?VpEKjcaymL3k?Bn`)XXgM130xm3Y)|vHDNsjK_|kNm-UDcQL;u|&&rpzmr#~gG zm5Keu=%;x~T`06Ee2c{NGqZ22%060bc$(KqmtMSFRVsx@Hudj3q|p9XlOTW#ZApH&lNCcB&QU1N z6d}{4Y@kloKpqr%cN19gSvIZ3`r&%)Qu=lmqZbNp<>q!f9|-k z4w7+;I5iG#!l@!;Jl4@!B5OQPsJ$QRk&%jAQX}6+(BWfZ(|Dd7y3V0DfWr=U*D&$@ zc;4_{siY-mIKQ{jadu8cmB!qp%>Z+zzp(%gE>pjOc?HKAJS13QP#;d42^^aVbRx?1 zhG7YN@OiBHE5+pJd7WfGM2>A3ZLqPAd znAbvdoWPSj!75Sr8nQ~2#L*{o1{|{@nP2MFmgjXhZj*5>q>hOu#6%ZiXJ z_Y*lC6st!&!|rbGau^(9?X1xTLafzsS2?|Py2z!}t zNAShV5JDxQ@?}0)FVQf$uqHdrBIpbNba#vK-pW#1<4VM+$-Egd=T7E(5!^oo1F}R+ zog%4=DSR9tKfTnce3(fOdrzJJ3wn*TJzs!21NE<_;#hHz>>Eo0WSfWsnf#G@s1Kch zBnCAY+6Yv+X@=8kx`xjOd3ZEFf5HO|u0)*k$a>Ytl68JEOV)Wo7GI0BF4JV%L(}-9 zfObyf0}(_`hY?;PGN#K)&6_SuUpJjk0do6WJW6z!!6OjwJ42?7p2433^z{r$>go(W z7*L;Vtav5jschLydD&1kO2nL3WtQ-nGRs3Vc^4p;&EyFPw$9|^S;?Z=GRJ^f{LxUV zCE6S{`cCA|mdt-L2hy-a)Lky?SMOEcR7`q>cda7*?JN9#PDXLJ zd2+67t!25gajxX@E_KjowRF3Rog^zPS#0ctL0j9s%0I3Kzd`(qU2n+met1K2-e*1* zh!RmcpFfPi<&|l7dWoiQ83kryqKH}urB!B36u&Oy-4SoKNant0k?hgJMRII?wFm}W ziCDTAE)lC9tJlDg>@WEJn1|+)HCE_v${uX@rW_uRzsc*0$UL4K9N7@t8n(R zFS9hsmkpeokFA{&aUx$9)OKa{f?im8n}VWN@d@}KXBDp#OS1s?FWg)%I(B1bg}*O9 zUd0z8(~#A&s25gCZVs&GZR7BXLS`TQ4b=atu|LrNbqjC+qeKiVkl#!$z`{}@-Yek6 z2*#|DeC4i@4e<6F-n%XlB0AI=a#L7!spt$l_BL(kjEJ{nXC%KR+tlAyCxA>S!Gkim zEf$KMKj|nT+ce6^i6Fu5EaU@v()l|aC!C3Zra1mURnYBD3y^gD&bSKI8;e1dLDy+V zA#CD@b$>`_oJ2t(Z+M^STX8P5!$k1srz3y2`@n(IuOQ#ezw|(aTBsCyl)?}`lip8KnB{_8#dTcdN|`&U9^%c;Pcs2K2V)BObF8d8m9 zqu`Y9mmHcoEG zBt9o1rYf;w_zp+83w-W9Bp}MS^mq?NiLdt1hnRB$TJ;XG<^%?EGf{qmFK+C=bgke_9u6QIsXBuP**Hq^ zZD(-ySXu%WqY*A*dn0Ggk0j~@A<<@zNU*& z-}739zkScqbG{3wpt3k+-%{6uBkBv^@E>?h)}#u3Q-{H93JeEQsTK2+g+KDg6`uR0 z`0FRwSoyyApLv){o0X&|%ENZj$>eKyp7&KD24-C3R}oCP1UoU$x9Sq_YqwR(iWOe` z4`;DiIKpoFvgPGQ6q744zRlP6aHOgvQ24T{xG7w&Dt#&ZSyk#&=(H;7 z6b`kbgAis~m1d60H!+P8jX6tv?_2RAFaN0A_kcr*Mj6W;Ls@ z;Sy_BbN^X!A{ON#Y#OKBSFM~Fnd{ba5^h@#j>Vz$Tg$<-O27uoIUW}*r;g|yubjf! z%9?GEixw#8AfJ!Y;0+lopETb)|RJi-B~qzN}DurYmXT z{*V0mG?&sjp#pT|)174HLfw?-xh&y$?P`s9$feY6Bs1Kor!z2kqh5b{HWBIyz5Qpt z=DCXq>?#!f-Ac^Rz-xj!17qL?Nkp*fF+t3GgWd;3X>J7%wpP6?N-sTGTtv!DRgIM1 zc>f@Oji~8XnwrlAVokA_R8dV7*x3IFqWKJ~pQ^!72ECvfctKGt!2!t5^h6_-%H+{o z)HTC}8bCn0@%%+-@cB|53s9h*7;Nf5TcSHQ({%PgHRmkrgTP-He8JsuYI8=`tC542Hc5VNIbt#p+YaB zm*md*#^0$NWHE%c8+=DxLYCfsKeb#O9W%@ zR>*s>?QSJ0tVAREZAn#dEkZOuZ%Y&*LzL(!6OGok7@NN=m7Ww|t079O>MEy3DyN-P z&X$|?^vxGL9#`77 z!qIcQ(P|#F0~t76nR5@3l?ijWbOlK@d>3gHVbcy19TDU|l zRAGxV&sXP3WrW5SiI<*JK0uH*PHD^*`9_RW(iDVqCMbWh_-ostOpycBxHaa>pQxmA zTjdVQAP!Da-uB0R(_TW$M=Yi)(fbdKEK@ulCf=E$B!s?=#>In~G`~%I@65{z*?ZS# zD6w7Nq;K$`2ENIoPLMEO)Tj<8^K35PP(wP1p>eXYM3@9&EjB@)8`G5radd+YHmUR( zLp7m#3uFf$pJXesCVMyp+Vv#Z`eFwelQG-@^yAjBt;ax3!ZZ`_(6TAPt4`?+RE>dm6;nTw1k_@<8 z9b-UmoKRNsg2f_hu~JJU=P3h&z}!5=!B;L6d3nloKQdahTny`>V6hL`zhZC^4qc** z6!w+M9PV2p7OqqpA@r53R628<)%nkA z$`9tLe9RMP0O``aeCk&G`yFL?zu*H77+8S^9H=z%2hwG2vOvItxv@w$&0v@trf&u- z?Vb?D?qO3Hoh~f5h~F|;l-RVMSw&j1RrMWNq7*6^q%&4Pdsrp5u26=vmqo371B9pGtXv9i4CwgOZSY%XtA z+On0R>sHJhs6@8FCasN5KUHZYlea3ba#kp8+mxd$OMJf#Gc`-Zeylu-V9LkJ!zk<6 z$I2rJx|JxO*8Xfo!1pqyhGJnnEY!%(7Ii;?qXOZbpTI$Z@aa#KypU}85HTVZgNqiW zN(^2l$`&c5O7blU(PCUFOqp3?@OI@1JcPM*yOM(-eFrRuY~R8i${rP}>H~X~E~4~P z)ah+ez86B{ZIQT72F5;R0Bh`fs!WNad$Tg*kDvW>#@u~X8CgTI{ZsVnKhX5;SI**X z^m5;-FBHxoVAdRfvDH}gEr&TL#Lwk0-SS1BgRp9@h^YsaUg(kC2cZkk67gRub)#@> zfm}?qDXoyKP@H+9@0ZHw_$clx<#p-dbA6>miI2ZhUWr3)Ts}7CAE!O+Q2HhmYU9X5 zP|)$w179oI5G*IZR-!o!s2iQ|vO@Sb@GSvod_<9ZK#YuXX`!O*W7|tH?3^XOhmI(f z90t#zj_FgD9(KD-7X42uIUN4Sf1gx- zWBl4)@$+RRk)EGXjWdwlHW6_}Y3i$UO6kv{AX?=eX*7h5Uh%Uz7yG83R^0MQh?VD* z>Q6$@Q+i9!`u3euB3V>+fi%M5bH8!J4sRcG{vpo)qI9g0hXkClafjlloN-jN`xWNq z0g?SH)}3q|8$GWy2s^l1zFH6K$~Y&C^GZ~`b8r>V1vSl}n8EOFl~IWp%uJWfs1(ni zS9*t5N9;YX+|A1mh~F+K(V|7A(lgXFoarRxIWfIb8Ltxp{ux3bW+OkE79`3*wAOFR z1C4ear)QI>ZR|LEvVRxd8OJjTSAlk3#I^;Adz`8l;y0yB{~Uka!f@Zo$Ta~vfvtz8 z<2o~r6#|7g&ToeWlHK7t4iXP`YYB87DcptYkYrUFIR(OXLFpMADBl(=pWceW_Gi7v14Y4kppisN5x%UWWVBKj1JOv@42-xvLE^D-AKLbFq~ESs@Vr zp|7e~nCmoFW5htsW`6>YOOl4>w^R=KBguRNt8VmRtBp1RVa6f?`W9nOz}}<>^Qzm6 zMn!;FHl!SABn8R~FND?$z%ckDypv<e{(=WbD#`2{qhKX7w21GS3hC2sjFZbK&_i89(1TP@#OL; zhl;1wL}ZBS?t|B);by?FDIud^sT?-jsipC@Hh!<>78v`EXm8Var}R<@n{RK6%n-Hy zLy{hzL^0{nIkT#l!!5?OYWeB=963S)Z+Baq8{md87D!|j6XqM&W}%BhRX4qWO_sKq z`|2%4WXrFsSj;txkb_5z2vuEpi+XCP+LZ;~2%@Kv_JpZJ@ibCGxZ0e#eSO1Kye{k? z-sujKSU8tzibp)WO*X&kKi#L&>As-*WJ?Y8W6pEe`ks$acd+=in;}Oz$+0=_k#0vn zjJ8z9d;_D@_jqLRxfpsAv4MO>CMsH;&C12HX!Rt{pL=4|MtFv{Fh=biW*!xzg%`es zYcc9Dw$^uVtlE%AUcE$*)Zj)_Ixbe=X1(!=Z*IJr#OoX_figrs%FqeD6Wk2zfI40V zd;->_@wap_qaqaWGMh3aySfpQt8sBm_b#lHhK2)cCLl{jt<=|EFp_bqX)u zViw=wv(sL5)_ zlpJqhFPfC>GxGxw6n{9!rRIHABE=KQYB|)Y_9^Ny1&1@lu~d~#ml;jeBm_@3QOQmG zOR6nK9B873ApUI=bqIoHP0_L?xK#})TjG1VshX}hO@7F2=I88_H1#K_Y;U(vC&D&! zwN&3Ei*#FSbtAO2j5ZjMt9+ldQJ)Csg_XYKJJt4hbV@!KSNM2$l|=?`O)wYzPysn~ zC-qS4waotmgN`{LA@A$CKe29pO=~&cEj>!W(f?o|`cIVNA^=d>iTkvNI-u^Zk8bTm zlDcLm?)u2=t7@U_Gr-hmBEP2^!U1gPiSAmujk>Fev-(*1gx*hjyqEemS~KD<^%$yl z{w{Sc846STtF-k{XMlPDR{Spm)Vc8MPadd_#zun=8x4b1O`eOveI`*dNR9CgzDGSy zA7UqAHhlgc4p+aUhFdmLeagf}`|3QXZsZ+;Ergfdou6v71&`lbz=Sn&Pwk@TY3cTm zd=@kZFs?e#1GVtTo)XF^wGq!bDw>Q^n?S7{HVT91oX8!e*6tE`!a^PH zX!BR@Xi}%CW3cam?bL=(tL|Hp_!y{iNP6IDbueGISiJkR8b>>?`<_-?0QUX$w3>Uf z?9Y2v&BKkG7SE|I5j^&s`ULiW_CKc%V(~epB%Nqz-Wn5a$E#g!1$!vnH+j5znfn3p z;tQ%CowwW6m?BJ#DFRJln$RJq3f4d1^P_3WCy~uvUnAlht}K`nyh6<7<_6lA0ZzkO^pZrQ+$yYG=M6PpqG; z#&wc82El-@mZRz;-QQIegz9Dw{M0z zTF#Fg^#e$fA9FAgR*CH!)hORq1D^hN5zzTKj)U!uQf5>|}wt zrFrW6_(e)FWU(6jNlNkhVzq_6n5?woLf@Xn>cX36+v7{rer$)YXbF~Sobm}@rY^@R zGqG`*dMDqsKwMa+8Wgr!u6By^9}(L|%hC?g5%wcy)HBZcW-nLMvD@j}zd~&&kLLw7 zxofM`hqcPjAkpD$6OXM{8zx^Nh?DCL4TS|%iXEdASbDC6le}sG{F`F)YISJj-|)vp zOo7@y{%|lqH}f9{A$ke#xOl2S?H;*%A4;iVY(h5YR{S3BH(Zp~P+R#f6sVud(TLOK zax@~OR}S|Vssm{>CT>uRFpA1IsFe`@7>)dPWB1UzX702cHBNNdqAtfLN4Kcc@ySE) ztMzRlg!Q7H=)Fy?D@s37$?b!cBZ&~}!pxm(Zs2XeG%;wa+CU@@R9lKY+aSfy`LKgc zYYJ^%yM2yN)aJB#-C?JCzXMx#*rmSDcXq#uBWUwQ`!7`dri4->6Ys9L+Vh@^MCQ(|20$xl$vr_y+Y>-UEiuBY!$D;x>zNq zf2)qfz0itp)%WGqxmzaiTSwJ1Dk?tjq1+d z&EL~QUW$>+z(R%~-it>Wm(0&mq;z@=gq}etO2%snu+{*$pn?#a3Vz6tV8ro?Em-tO z7L5WF9pD}41UKcd>a-7zA9@t;ey_H3%A%zUgvcA0e3!phzhLZ|`1DSz3&D@4p=(_e zUAtQwBgp7(b^CIDP&t77cNSxA&e8l^RyD`8&|IQ1R))1i#g?-hoFs(`s9Xa*&=G18|ktMM1VtiM2+k@|St=uq4_0zIut)0p$06 zrk)i)M|uMLUu^+DuavAMqWYn-e{XW}#~I#ZW+ z4KActovbcsU~O9q=cVmPwY!*tEqz?{q{|q;Hn0wHBE>2XoCL6g8(MKi!}nxEYgfi| zzVNL}vi4z-mAM${^3-K9VsOY+2y3!+WSzXrJ1oXB{BdT(%ZwjmqaV+b2xHY{;Yqf3 z8M2D9yyee=BRwSdIi0#mMt}nnP^OG6NH(RKbk&fRg}XLeF@i6Mtmf!wEc0JCw|2zx z9+75EVV6XwG;18sU+B9x&H7kSStxB`eaiE(Cij@}co1{?7~;&x!=*F4&?!@J+Jc~j z0Q4C_@d4;GL2&`-IzeFp=+(u5q5{yeo1jeu)u1%IVaAM-AV|=Df`ViY-<0;lP0%HR zfLdtwU5O3CT>8%kr+=SB^^xXoJJU1 zd-#Wq6gn7Iq_NT)UX@SP2n{?4q>f0@Sj^aUjg?xGG~N29iPBE?Og939fy2>pc}KuS zPv;1}0)rDugnP!#eSAY%r5yJ*RkUL3=sw9A`Ki;h3FNOgQ`!}v=3C8xd;C#zqhi}v zf?$}IpKZZf0(cd@;4O_J9vv~r$P>Qd!@ zbX2n9^O;7n4+lz<7)O=x13~K!iuHTX^U9mpVQct;vK0z$w_m`gl1}g|U6shd&PoJMx$f(v)bJGpD7dpyMc$Dg`BG=4rhM=&pV=9S zkhZf@Og?dkU+AoqleT}{MZwVtyB2x7&T~5{;ZJ~kdS}JpH@hk!$i1m6(mxUnRtRTm z{7e@mk{9o$M9Ud=l_K0_hxh45-@(#eRvt*w?vJ}GnR1w5$=&vu7?RXuIr<<~c}li< zbq(O(J(c<({H%KYln~VpRuSBOh*D3pv&)6DFMd@yBIRf2$R1@)9HV@V70&AZhO$=4 zFN33uD68BAWg+N6Yv0?-FrSEks;xIendiocKRF9CdJpe2Tg--x+4%Gj&&n6ISx{BV9`zVe22gE!+!pIB##Y#ATut;g)14!#@;9>;|oKvheOO-6b zjiE0WL5Cvl$<{ zSZU4oG}MdnVe1uzr>|0eS*T&pAtjz_x_Vdv3CS(*QBl*!$CX7Cy!caPGBqgn zl(L&}m8iJyDP@$e;tl7NhGB&_2LqC^H~8S3((B3aG=vZNLK%^E6vQ^@VETx;_G7Fh zo(P`+HAAEaVu_ajP#N1pb`tERLe&~sP7tY1cBpf3>VzT*{Xn*lCok@D2chIL&j|n= zJQ-U6e94Bxg_x?Y3_W_6AcI6ML2L-ROB5A@xZEFYy30juycYow_#DKM{_{$=64!1P zio-&J0M9P)h#UB~KPVmfloqOo_qvHuH2q7ZHSGzX|4PicDo51fJoutgJK8y|EEpY} zboM)^{K`e8kx%WmP=vMRqVl5boMSOAE9db!u3T1{MlM8e(IyqC^AI}%3=ZBD+Bglq zQNBZ>(%)jmox=NmtNaG<btc-K7fDsSc~q*i=9Pav8f^OSv6(?5h=fFucPFP+{41ocw=UjR`bt$k`aa(dHx%gyn41CnWRxTTF<1M;OTXvC?kG>IJATC44YBbZ zWw9GlzOKIliyi0h{Hpu~Z^k_(2{OM=?h$h$z>@sxZ&)ghTlarcvSfYs9FRq|%%gLx ztOrVIh?{Zj4|2aFe<;sN(giExp^_qnr6W;c%HEp#NO9BboB5c!ke_?3T+CmNK`3Jl z{U}?FlzrEq^NX^Y1dOD+)%r!}%|(@UkO%{55lJ*9`HK2%;SmK!+iyfYR#Xz>msQm^ z|MN_LsUlN?CNd4vR3f&v3{dH-f2*l6@E&PuJUlN`YZuUv)0x`*{|7SBYOAX%i9sHQ zsU3~8BvuxR@qBBD+9o^?o56Gdz~%9a3Gt|d3qA)VNT8pldDIzBA?FGe(zFy{Y<(kH zL1_g^7%vr~lCB)p&%1@GI=%?%Zd&S#e`Z6FuX+C2y7_XHJpa!e2=e8ytfFeLgl;?> zF1q+exY}05G77$x|D30UTkVReI!Wg`MX3Ft@3k*N9p;m)T6H4ThLm+wl*lU3%cdx` zb`j)sf0?0@b8pVW4Jp;eI3u^W5f$)#;C9r!2gI*-*6JlDXG3}KjTJoUpV^v}#_Qt9O6bk=4R@8{h#rQJ` zD&wQ#(B*shwm833*4;R@rLPW=%zQEhKbfFDjlmRIMqP_hkyA!Y-#^QUX2g`md~f|!FvEx|#BS5VubYG_ZG^yz)m5UDTUJ+x!27tmNOGaNN|bWL z8p6x0q0*M;o*F7igTAPt7Nu8yd6im%&r*P~_VB=3;=6RIrA7mKwU*iq-e2`aS$8L? z;hfc08^wrT#Z6|mK$GZbzYa~UtyV^+S+zx#zt$Fc(^i3cs8~m>Yg=WY9DK{iYH>xJ z(cx)F)KYwP9W??OciY|y(%HBGm@JN4|* z1KE#b#=wvNPN*-+8C+kDAzKHanQ-__(EH#39eRI7eYNWouU(^o=;PrH#CVw9K-3S_ zxjjg?r=gkv8wA8kI!bdyA)0?2&q4Y4uzxjFiBGB8NF_rj*-iYv=;20c7X-#OR?ql~ zf@iZB|25ykCTconC!cweYz0&z0WM!qpweIe}hUE0jSvP^plv^Vep4>Pgm zZRfR3buK%%2wMcTpu2U(R2O3BZeUZjm6`#=w4kVVHdSj^-HvCH-ud6rmre0REK+e; z`@QhtklDHU^w3Mz}1lG9jYQvrUVo)Ct6VrZ!XWO3)vCuDRNb=<)e2)#h}y z?B$kf3G)AJskREBm*ID2YhK=`l^QS9$86RqkI!pGAHh1?N(CPSdo``a=YPGm+Bx6W zM~WC#i2Sv+Kq+x;)R};`w)w{=5@g2YT>BGQciN~ssLXZGh%%2qL#We=Z>P?YP`2p` zjKzj1f81G(Vyf%J^b>EYHRSoG?bJA%R_Zu zQWFyGcB9R{wDiH9*+r?Hx3ng{q_Tf)S6kk(v%1o5TmxRci@Fcb_qsSOEWxXFRU05^ za95S=>um0-wx!-eXL#*aYQ9z$=>{bsC~w%_v)$B+)H)_Q&6frswGLNZ27-^*3R;)d zP1W7Vys5jW_hfgKR6|OosFmQgNwIrIXi+*nW6RVxr>F^WPS0#vfg!UVKVD4k;c>1K zVCQhAuLOGVSELht1sQ|rERo&6v;6vsH%V2eq2A-EqA_`?V#GD?p`ItEE2g&yZQPqM zytSY=q+11PkM>bJ+c=o;3{)o2ONH1i-l(sjEP!gF1Knr}QQtCJnA2CR#TWakm%&`@ z=%-edGydi``>C&`6>MJp`|gj}D}u7DCrhQxsQ>fs6Jbcdy{76Klr)@!$6ib(1vO3LmFV1V3XfcvF2_>YQ~%hVUQUM2tgTwC`>WqFd$o)UKuS#ZTC> zgMgGa?(Ct069h=p@GT%=Xu(Z*3rl_cN+U23BN}U19S@#wN|Ka@0scT7oWwpHodfg< z+JBh{eD!}-0fj7m-XyWWpPVE{I*1FRU|UaC`%1g{2b0yhP;R(2SuH1T{f&oD0R@`J zUzwst5IANE)-l}jHAPKmeCaoI5Amko!XDoV0_Nf9hOIp%nL8+ewkaT$3B&;q;5Nt` z=w3ejV5foqHAQVv4%ZC|n=S#BT}5!S61*Tf=u2dpW`2>2B7o1qkPUcSZK`hi4#oe> zKX_YRsNRJdmo0%flyq;^A#8e>CsxBdjSF|z!vEgwIY?VTF7vI8029r#NK?t!BwVX{e<6k zy4sEW4b#;m_}0bgYHJDimX(>Q4i1n`T65>9zikc)HG8j$nz z;Q1Ky$E|ngs~G_RODtBa6(zOw5OD~G209cfF@m};R!vNw6^m5~2Tp}b0_Y4PH)!{7 zAuQxoB9$tB`wob^i%Znluzx0k(uL}c*r}6H7Tr#mOfn}ywVjkC_)|;OgV+Snm#II~ zw0*c-9p#)t`>A8UoDdCT&<=eNr^S;G?G-4 zB^V(oz#a!iYk*j+(Vw=Y+D%KGTTrfY!S>SEYeW%^)`|iJ!9H@WU?;Y$6&2^L6&15} z;w|1-C(Kc44i}Ji0MFg3#`4D-)jBB1zcqt5iPo&!q&5nmcjR~0s*y+|Z&ry19<^B% zI)Ag%pkh2^3nVmqc#AD+9=saws|n?i5ueZ@+y(dHu!q7D7_~rbTkvF?A;zneTLAiUtLVjg+eBl!ZWCW_!!}jeyTe)^Ane`YpdZnAe!U;?f#}sS zABcPlKM*hR*9X+Ay!nUfC3xdMQ6mEB5<`$+(9HtVw_T8KOSg;9^YwP|dG2plXV4I! z;}`Z22r3u?Pyr{p(Vxlzk(0k!F>s$+nqT-x48i=`0)4f${aAd{H6IH$=FrFLP^tzx zmzaKp?*460#ILK}1^X!jEWy((wM2pUE&oofy+fr=UAn{O#0>gYhL6e0Z|B(^qLXXx z6rCl8>VTbMaID^G_cSoI-P15BV_TNX&-{3&I)Zp=+!$r^)OeuQ!?P{;xk0Lu;mmov z#7B6rOSHD)C+c(dN1!R0`H9-WCZhsDVKikOfP8TB%#W2VlC6G#ggM!wjaRe9yEfb{ zKGo~HZB}%*7`SYYNP?MEf;ZnIc+7Y9h&uP}QKzDeHhV>a!F%&bH)5XyNFE_B$N`MkI+de}-7Iml8IS|RdX-9>WDH==dU{}Tp6CZikG4YYl9}{@G`Eik??{P7vKD9mU+W(8R z$`K{>`c!n`zld1soKTyEu3CB66&oNY+y7?fN^ANFwUIkt5^RQx75e-s^(yU#?>vj8 z7UI-TJ_q5NW&QZMnuhhA_y0njFJ;X?uf8nrSYdTPuYN46m)->l@f$DkmHLu;LTrLq zW4{6o8+~II#F{z9%#l2k_eQko1eL@mgigY)Z#_c zk3A9lo*g^?wu)QOj`2}>YJL9PZMA4v=94KoA9Gu6DQDwm_1kKD`P?xcd0VZYhN~eZ z^D|Ux8lZT|sGnqBLS7q$Rc*=qo+1SIkOGf%_2|~MYdwh#m8#{4xwo1`by>oiY`JRcJ?IGB2d&MNN}K8akn%o zaIEt zo9*-Ostsrt{qwu(3Q{C|^%oE@J)S(u0nPdOvOOZbuo#(uEd#J<;)j@Mkg}v0iHV47 zV4)W7YE{G)ZQ?!^Xb)pp5kQajanEb?bd6WOr`C*nfGKPjKv_%zk=>_d3BY{BCn8APmWvQcat=0@_6Il z)pz_N_x-oX{r@fUz<-N8_}?NA`A1r3AAlzeJNE-^F8lES+qvTtZj3whO_<1GFUth!heKvcZ(2Y0aNNJ^fA%0Xh4-#PuhzblhRtwmK`AXkPgrsU+sI4v zH70iaf_<(6aQ2@B^4xOTeQBR{ArTqXJSY;FdAv*ot!vat$jAa?={ORf4)mYAvm}6m%5R1ymUr@S`jF#M;`+IFWOuwq}+(rejEuHHTQNDPEFy zK$)IS`26+Q?b&Z7*U{dl4d|nFwbs!a$x0f;&veWxUmSu=7zvf?X#+|kUWO4iN!YrI zE=VE~D{g&QPm7TXmSWm%1%F;&>xw0}UIVTClTpJOP?U9|f%cs{^qzCAJ(fKnmyADn zP7|%Xoc@P(tBKYRCSRxV7fdZ)&X{JsZfYsifnPV%ZcDqZV^3+RQq@d)f7um_3%d!4 zU|zXE9^eT~hYR#Rlnd4Y1QMZ`bt|ndEwo-l8|-bVr9iglZKb^?uUcs>Zl&FoPzSu@O@5{WM#wRKqk~pEj`qLJjCHh@ zf=#x~^2>tx!Ac#EvppRC{PrqO}36*Tkg9?4M z7yQl2P3^0_VIxAi2N%bc`eCe3;uZU8l@g!>FJx9YH%w=V$Oso1p8zFC^pejC+BZYB z2ziCh&qT4}G7wG3FfB3>=el>OQXo-%RR_iefa(h%5vDU2NU8#HC+0$4KYK1j^w*wp zlRDeWgFpi=o~VZKxr4M8iR6L*24YXxF9JnKUf=> zmPyU0o0Xiy^aT5ER>Gz}BAjEvdLUT?2R@O_(@Q}bFE$DS?)n0PL<;jumuHoqxD?M* zed1D>8xlQ6#t<4N5=;3W5puEREIXV^k--rqSh?li_*h z+6zci+8u|=-CTa_HLX^a9ax5G^G|6i4j7R|29NJlo;bUQW6TJ0PWPSW&%UlrfRy~q z>zYR@nvZE|n#2iR7VF*{S^%*se~i<{C*<0PO-#9EKr)63$T0~+1?J@tZX=MREBN9! zwS+2^5)q)7u1&*gw+xtC2q6RWvzaH51QQ#x_QVSQ)0pf z{>L#Heqw@l86wvWZ)w3&aog+xR2uAU1q0n?9-LyGoQU<3(p{O+zzq!wpuXSkf87>M-LnRC~2@PLjE^ zHM%+b_H2|zu1yG_X%2O6i*e($a;& zpfg#>l(JHLp%4_nPp{OTdm^aOD(xa_pS@M9$eXQ3-FJDH)!II+Ix%asNF2WsOS^dw zxDUjy475k2LhChJQZy`t0G)z!7h*L+F=H|1Ay}Wn-(90sz{lRbMvI6dGoLb63|eJm zvmxZ#j-8|1YqVvFmB8K$AupYtLjo8{aVmvjPP+Y}Bs@BR9 zMQ7VgyiB(D;}{jr#9i;`L9|-bO09HatZwTxoVuvQ-(9cu#H;_lUVNRp8??5%SP<#{ z25aU9t(L6crvZnIE4iK?c%v`Gds2bj3b7hml3F0B+u{yV!gO$MiQKU*6_&0e-&tHl@Y!KUh6zGjcM z&!$RYo&Z!S?o0Dgr5IW^Rk~NJ`;V^7Z^Y+&wQcC{$vGNXGRw}vu>7|k^>tjpKD*=4 z0-BJy`^AK;dO%}R1rQVVHH`*Y<}v=|nnr`(och1VLA#hoheR=r4{IGu3(8tH>w+)> zjx10|lhGG6W40dF8e{a{Ijn6(doz!Kn_6JqIHL8E)q_yh@yxWIJFdC?Y)U}VjgF)p zyuP1;dR8AD5WA7HPH3&fsD`9o_YC2Ru!O3R*16bMOw4%)&Xj5}f>5-Eh2eyG)oe{ck%rDEm@c%Ju+ zz+yI$wvOar9y0@;=RH2=A@E()3o>qTdzuV~D|$XLkO1mrEDvm4S@9$>I?fGQbmgtXOKZm|85xTKD@ zZv;&l0FzC_gV@}vKK=@%v_NSBCyFzkKAh%I+cHg1*)xaNEW*mAZF1fVuYCbzmAU%H zHvt}mhC3C+U@=_v?y&?4w7URF(;+Q0H+-={DwOnY1%yuhIihe1ssNaIhdtMzgw4sS!EhcfgVN&YRh@pyHZHb?ft~Z z;v56M+>YD)Xeb+oflx1uO(K=Ay z_bSS26&(DMV$nOqrIXqNSWAKqJ`&?UyC|zBP31ooWuxnf`#Pr@f&HM)U^6AQC|Z;* zoBwH$VQ4K4XN|yWejU!D!D{{<&MKD>tmeUdRug5AMMy9;p2Jq-Vr-hfS#h1riYsJR z{OjV3%!(I{Kuf>nwIf)p^d0n}*)}pQ5E#jNtLNz|lXHA@Bx@4wGc&LqL50i=9Gu5b zMY5JLlWYsdVhI#X8Wc1fu{f_D#oh|?XE1n96q}9-**2P$CZWin5^QbK!HHmR$Vi%_ zn-6n==B?A&MLZjgz%XY#MVeo1_@V-o3C$SRQIKms`*eJH49mt>?pBg@MUgv7vZN4) z; zEeo&P%z$o{xNQO&jbO*fItM5UsD^kMFTVpP8ExAuAyA-0?~gVMf`Um0(liE`bX}AY z%Sz%fCWsR<`pGK0n7!K;WUfO6Vi)bHSTyslH8hqr5q1s=k8W#kJTqnI%2%~48w!j$ zx-5H1hIOu!iL5pzyk3RvSFeLN_H491E6;u+RiW&PEJKzy^X5sc9g@sTVx#PoN2JZx znJVlp(y_q#h!|^FbvDLbbaTE4Z#EQ0JpeoN&^}tEGKu(a9#NZ>#X``yHp994=L9#o6W3?~G28MLz;Xx>1OQ0SQ7gsoR^+!mEIPiA-2CH8ZD6ZmsC?_sj|ghx(( zB9GCtq`ZTv4yj)lT~j22_<9qgXe=+^lr<~94%S3zsSxL#u-!uJ)27?}t)^^tdU!!U@V|6P$5DlUCfJhPV5n#?hRxu8#ZlrgL;=CD4Q8(EQ z|En2m6!8O|p(sK&PH-oTxj$2wVECSQc#0KEyIwf*#5xg4w*~lRIbw%?S2*;9UC`CS zp=UFtmXK#&u|w(H6mX__z=c)B%q<-Fo2v!C{uC<}L46n?c6Gei;>XKnBcbPj72TY* zm5b%&_jnk+DfIw$SKesJO4K|p()qf@OY)o<`5}P{xw%FoIsVUY)*dInSV|-#! zaLtpp@?YDr3yt!TDiD`g=OD#KTBt&RKc%}CfvU}UR~^YGNijnL@jhZf;;cPu`rlWJ zKJBp-y~{J&11-PH*W2E4+q>1C-G&O-R~^_QDOO+&sj>^&VnnInRv#k#iR+Wh3&KqB zypF(zEBL1!vBu5gKXqipXlu{2#teLZU^gtje0YU`Vg^L7n9w9&@lvef9AeE9@L}71$ihXIVF-cUIMIY)%1L&81h^H=v|)Utz1TzD(}Udf?4& zbZ4=8ZVhw6=a`9GcvuR1sbppY^9Eg$w#7bnuP+lO^3%X+yd>kFgk z^!DPSW_&Oi`lRQ2v0;@L!2F`Qbt_uC!3YciTLhI#^TY!iP9|g^7BWeuWsDE+&FEy> z$=+-m&Mc(&VYLS?bI4WG3rY--&q6{j2wDPdT2_d`0ktTslVG>V?K#P0sJmj|2nx3i zM$Zn69!yWS%M=@sqyV~w$M$6}hZK}aMs1hznSI%F(lVagmsJF75!8>B{+GeoupeuY zLPya|SSq7|1sj?#*-nRHS`N+}M4PkL^8tehk zay@Ka?Z-kTIn&@9n(3u@(E%(5Bctj77MYf_3_Y6Z$1hySL_b4rX-G@ASC`*v$@Fqi9RINEi zU=$ihtu+J9&(`E%;+rd0f*LCv^9zDZ&D^(+V))FVtP}?PrlIT;+NW7@ffWPVOB)7! z3jTc<$o?t(g6(;R13{ABIjfq#Ye@BBLviwOhFw4q!oyh==wtJ*hqECdg<6kbeZzdT zyrA({+8Z7RMzBi%7A}nhnFz7cNEQ#T?MUE;JYI1WD<6eht)IlMxYgR_S;q&DVzojJ zUV~_o&Ppds(s=VG-!_UBEdsVm;7~EF_?c0xeUY4{7y|dfHq<3_?%m-o#+$v$UJENQ zsuzMca+4*!lds}cVDIqpt1Kp-@5=8R=Y{Pq~86)i}H#Sj^4nt5Csi&y`FCyiwh^6XQ*KZbhC8NLJAJ0aDAC6CB70EbI`!qH{Zgq~<46&F5iQ}uD zw~fGPG1|mrH-DhnuZgp(eo+T0ROHgcVOG!ETz(6fehOdv7AqO?&vgz~2oA2`U%$nk zN1Cb=S^t(fC-BAA7VvcVIH!F<^bNreJE~b^mzXwXFWkiZFJfLN&o@(!-sHIxS=FF< zF!>1L9vEsK=P{GmOzC&NVG`>ly~;x-v&Qh+O=hX6dh2A6@)-D&#Y+406ikXKJZOqP zlne+rm<3iqFMz}BGlj)PY}5m50K^dRTX?|!EHB6j2^z7yVpGtB#bD2T?6QGy1O-Yo zPagMGroAmHEAuw1A9`UqUgb1?XnCnlBX`?q7M*ra$p10_HU&_Tc-R;~tIs1Wo8~=Q zJCU5W`^-rnV3k}amZoz{F=&_ICqMGUGCML|mX$Pd@dJ9)4Z*&R-Lb5A-K4|-Pw1zj z%ag&cCvZK3T`l*1p-*$^I*>}?pga-8!=|!HF*x7h!bk;5bp<{SkXf30Jaq*QK0!wE z!BlYAW2~>IvS1nZ)o)H`&&UVQ@_I8^_Yyvh8jNtSJ>CW3W)mkL&R`Yu*X4Xd>Zcj3 zT68}3>2;`2f!4jy`>!{Xy@J`XU?#gvGR4ue!3UPI4X0(&y~0>8#M-4({{?y8F#?l# zhq)}$ig*`TP$i@vUQVJYcbiVNF*k0H9tgANOgi77S+0m^fJF=|hD_Kh!lA9k^v+ZS^Try%r8;NVD zNAuDW)W1LtG_$jK&KedQM@i8a*s-E7;0+aRAm%TWgrm4dAd9=#vUj@|>~a?}HYr1? z3uXToW0RC3PA-8@od;r<`b!v_l%Fs*d2cOily7WOF4!ZNX)msju}Rt4C-)hfq{dTA zX?whol}XXI|72y7_6osv1qv&Z*eoQ>$+xa!t^To#Zn5=PcI6!_dFu_VOHj5w?D5jG zv-s8xta#9DbfFlX=DaL^b^}YOMj>c66bkZu-&^)qD1da>T!18ysGwWuiBAmzk=lME zD4GRXFq6cl$r)L^$R_r&wiWfkJ|;iDiFFL}^)uvMph(JZW+kgrr+U^XwuMixN*zH# z_8kBsulS6cs1$Lk@dh8enf1pcxw;v1v6Ep?I};0>c%<>+zq*&T zmu^^x_d;;2uKI|gtlx8(CdsJe@jmQj?Ayg-_Op^jKNOYqLy_@z|7`t)w?zcK2z_q4 z0l?k^eQiH$PuV|3Z1KBJFJg!yh40<1zxT7>ByB-9sFMTP{Lh1|ly-oCquG4hAy$?* zKg6Qttvh(?A(o&XrI_#e^h2z)f2wwrKswCICVWo`_-?d*3T?RiN^-z!XaW?F+Z<+z z`PpAT%w9lt>&#&mA_WS|O6j|ZZ{W9%ux5~pS2@aB;%K253mDEcgz$B&DaY7aDeS=p z`ZCG3B79p!+~iF@h4ASzPyLj2G4??h1Y)ZJAO#P7%4&z==7>0KDhGPKB--&pQV?{4 z^$dBW$4TC&%1Yj%bi2Y7KK=x(l&|OIKEwXdy!kxkGc49y`R30+3T@%%KVz9%qSzsM zk9$wDa(vZEHp!1|tageum$%;LV^6U`zTG}jg%vj8u0w*o@ZS{_cM^(Xp~Pdgv@QfWC>M;ZUN*(&bF2w_^E__3^1n;pmvYin~Oyqls5VY zs-HabOIACdn!|fQfh$CaHh>LE@?LlEN=HvA+`tN5GVL8(wb=(kW3xL z_kM+~RosO76)W!S!;9yAv<0=<4#!0;F3-EX%0(pI$lF|mIIb8^{+xwJ29`!uM4`=| zcA#KWHe(t;eUUxoJpswv6Wb_0nLIEyI?$^5HJd6G+@KQxEo5Brec}=uj?QR&nKhJi z*79+e*`%PO_)zve-3ST#hBaUdB%C;*%W|ImhD~p{{xncbl6e81y~}yS4p?x;3HZ+` zc=2yprJ#fPHJn(>+kMN{;p7v4@GS^YkoVEKHh+m7PSPGv&SjnC*?;gwxe$>agvQ}JW)#Vos zuB06f+)~w4sY44S@OAz*1+>EfIfOMa zrv;ctr#0y~l?@)b1P~{)aJY}0-K&s}+JKsBWNPIAe_vOr8ACE$_%g#-0lW>t#jevg!O(3~a%%+vIoaf1i^ z#5xsloKh^&hjheY$WQD;MOtOW-GeYxTE$!bhRuL$JnDB=qU5zB_FXextxbtI8lxAn z+d{s36vkVJ-=P?BjSqrX=N~C?k&u({$wF{*w-d#8BlFY$$P9+ZN%3Un{}g36$$KA5 z{|)~1eK4Fb2Y#Q`hb;UrYv%(HYxHpa4>Xw`q=#6X>7n!^Ur2+$><9kR-|WT8GyVb^ zvW@5B+%(v&0YpweLZFy+Za~D3<%tk}@o)B$7i(C!jlnU*z2RQ0K>Sw()QiEh!@`#<7)u`=DFhzHT%y?b zZtK(hB(Oy=RAiFCPL=f1e&Hcb_%2DW`)}a^vR;EEw)JHFaKcfXB(kd}2^fYv2K*|; zZkDjR=fNP3ck9i7O#8a^O)Q-s5E*!h0KFFWWjX}t6{N5ExB$IDt4t_tAb$@bO|#2- zpb6r{Jh$?o9VK2keJ$1m@xnAy&Fqc7NC9m>!XF3dL;Z&^$tOvEp04QcgfGDt!`6G8 z(!fRR9qx=<_Lmi>>WZZLu1~70=@rs;KpHF>BMLoT2)f}www8Z+nKpl@p%9DyfTqcw zmUgrAARQHjh-Pz=l@@%bRiNg~Fq-qC3g@0DyYpJjrp>K_#P1OpNQr&&;CtW&(MNGE za}^|rC2%&--T^X?LTK$YTr%%lrI?-@kalqb`W+v`hhVnR21fz7>n+5RZFRfyO$5>j zOdI@)#HX^_1CDe|B z4|aqqE&x~Az3jAOAAQ||qUPl%K3`2P#fydL-NNz&p9LPBR4$11yvZkq=r73W8~Mc$ zy}LYPBX8i*>-<}~Ngln7w1aQ(=ndHoEW%)HaOs>!uLgOfH&pM`pw_!k9TfgApMfFNh<1&i^`AC_wN%+{kOjLRWd#M*d=~9vit8s8q-xs4shYi(p`o+WTcbD^`C&zp(< ziNzOSOXCSHz|7ptr^M-vg(D3Z>b!d4bYpn-|{C^iq5@6s`N{zIbfjmkVl zU5zCOmtjE+3}q$X&9>ZIUcVHXNr~z9C$O*>Gq8w^SwqE#SJ2x?k9bN2y*7mTyn+t% zWY)b3x+P;^Z>p@nN(W)$s_2L59(~A_mZ#%+>6&^S$NY4+ntBrnivLS$>BGJG zB6XaTve#7>r;vCM5E_`pE7!(yzuOvKTaTbUpQ&|qsG?7?<}}a`6Wpn>4x2$st@oSg z0pxE_);mg&@35wNK0zAL^Cu8hku&sPr=Kyz3a{N zQQ}TVh&dv0^EJsi`0G#UvxsgEYz}KL^A_@2&Gjw>&uOlYfo~Zt^mti%U?sKEp)YaD zdgE#RaA$32kc8FL#b>`@Y_xt|sgF|lfem_un!SIYD{wN;-Joxi-$>=%f{lr>sUFuz zq`jiJT;cE^`N6RQ=5;pd)8xz^{K_7^1W$g&=$Tfjr^ht}ky&t2aD7q-jqE*Y#H+oV zj~Fp@gv<2?3K@#rVi?#I@0U9hctmAkB3guxr!qV{n3^a{YCcoKx%##Em#`PJ51Nd z$yNLF;@k9H^8Nn2NW3wC@7<&8{8X?J%xmt_`||d|hN0gYV0T|%-uM%}6~8-LS9ne* zJ&f;N4|`yP2J+9=<4fR3Of5cZkzPv99mtrXs_NKQwI+l)SJdJ;#E<3Jb(IQy;*RPp&l`=sU4Mu@V87^PXbMdgC%XlhMzI6$09=gk>tOWf!~W6@`QA|a z)T4OS7x8UJ4f`+OHtZf^d!Z=fHpBxrrZK8tqBqZsn&_wLzmNdKOxgS^8=^d8;6_ZTjX)=fU; z6TM0qygsT3LQ$Bjt{6O*gnNu#WpLzyXWRf>r35l^^N}9j_(h|ZPS`@A4PI@TK2&~s z6#w1Q%`_Jh2-M-A1_yRfg9F>B#N2)pHKcbDcc%@e%(}5og7Y9er z@o))nF}@a;$%ip2=oQK$fCBp=b2<2laOL6Xxq`$ybkv*i_XlDQ7J)Ip7$oYAOvmA( z;SQsFUxMG%?Q#{hhXKC4PV;-Xym&NUyGw5x95cq_s)esFKV9zVE`53Yptgn2*3YY+ycL3ET)+O5Y&pF@$v2ze#@g{-Z)I;yJX1&1M|?7#DQyZ|TRfx1`F=_zZ;Cf@=m>90 zO8H)hBaASBSK6bOD>4osy}@Mo5!4Oc3DsId^eQR{^^$q)7fr=`_Qa5(wdHmPsF6*`V>C3ud-M_3y%JR&QcxbMEN&1QZl&il6uiq6=8`rIGuITF| zc~&;h_)dQ_aQ1HGZs&Hp(XcDm^>{w(y3Tmcce={WYkG9_ZHo8kIuf8Woj;d31vbR5 z>2J!@_wsw!^e!cD??pN%8otYXI|m^{P_o-iC0F5#uImlu$@}<)>-yNhiTj;cQEvjD zoeP{l=X+545BZVr^$F^PgGkYtuehpL<7q$W73B0oeB%##?=p`MAwt5N^TT)uqn6QM zLFL%WKg?_0(C6U5;gK8qqw@ETA)!Vu;fB#PbJB5u0pgv^dG@mlrI@RZ^SmGRP4d}K z`J$U3Sbwv2+ynz6XPxBV-_k1wojZwq?%-f7wAXm)JpB#n3SXQDnk3^i&&kuHW7nKU z0y#L?Wp1OVBEkNDF7x)r;{`RN%XQi`DM$Z^?9zpZbVULTc+|lA6c!8sfB5>gZ@zP$Z@i>qS!ks_#b*4K!L z!Za#^X1Lun%EcclN5|tUZ2Owm{6(*WlXHW9(NiF+{OlLKmz;f>*Z5U$DNp%^kNXvD z+v;!lf?vV0PWYDJ`Bi^Io{-B2-P0R}?8`;*3cU$F%$Zzn-NWqtg92rG{F-5Xp_qaU1;em-Y?|THU z)lR(WaUCT>27lf7ko)@LVr@V4xP}3&fVoe^0ili)ywn3dLb-$}nVK(>KyLs;>`8yLYupy}@_=p}!G24&Xo}J4#p*{y5&^Po1}|`mx8=9Uv`UPr*5G4Lpay*|gW= z$6JxkJaL=eP$q0ft~QFQ<8uIAyx2p$MvYgDVPT1ujccbPnAY<|i~ssiuMocj;ndh% zUr!_>yHmvt#F^=LdGaHDLJ8Lnk82zfeh6fQQ84dk)Vy3nYRt<^kM!lz5kBrOeWLu# zPA>fo8t|!IeD~jalAgW`C=#hSzxTJ^GHM4vs_zVZB5@p;^XDJy@kZHCY?_np;u9Y0 z#bx*lA4A^P3*nUQZ8-X14!q(Ccsm;8AOGM9c#!Wko%{=)fDb$YKeA!j)$6^djQEJA zD9-7f#BB6V4vYf@HsjJGy(oX>Z{4UjcxW%8W0DaWkG2tIMuV%FU&gVNao!)ucstnn za!n*&?G1kd?HX@|fJk@~L zhIf|{h)benqqOu4Uo0E(CEK9@<}2XYCkkuNzm|=PQU|WNjfy3o^Q*Sw6DgnP&$^A4 z@(U7Q-T~|4X17r!>P4jKIBG=yA$>&)^PBjR^|{+PBFUY6WXZRRQ6jY8K98#l(w)Gk zp|0)6165;jRNwvfl6(!(6A|1Fj`)OYe6MOWQx+h)W&zzAdk!$sA`b20zz*$kjxW}X z=@myE@E`TmdFGOg1Fpb3lGBZy(e^Incn4-wsa*A-N6hA0D4R%n2PT@82808*#&e{N zW{I)t&Y0GqmjKVoZXw4NeI9^#91;kxOn*)r|3}~WBg2@BjiaXnjrXNa{EtARNoc1d9#@LK>jbw3 zDxjt~@DbEU@7Rg22r^otkROALxiu~vwLeHF6jBwj-O)gYoKC@WDjdk^8Muxr@ECDW zt{#G%mOkZO!NXT?d)#K?>w^9w&cq*%^@A(r$8%4JFsczkZ8m4@M(Tb zfsggmHJg8m=yuxy5{I=PKCMFihl~b;-OG#LS9@d5<|3RByA$7M(9qOTmy$n3J*RlXqQ-#siGV5mKDvwgz=0nEroMGx8GY^_9|*XDUwjDQN-pyo>-VBY zWU!fjxiEj?z)sgVup{c|>8p;$SuZ^I=Fi3%jXi62<5NoAKmhH*!()ZGpdoVWZ;4ZU zH}>ea_INmqOy%GlxH#HUgaL2`D@WgJm;5>8ya=P<57QxZr zbKs?TCiF0s7wKS>&=Z40#Y~>ct939Y%58)B#~mKe+x9Pu-)BubGFs3g`|90{qer#`6%77DyAK;=n9oVqHUR{P87k_@dDy_RBE4 zu})(g*lEm{dirm$hiJRW`;Tsj;*Pk?(1F2OIaKkVe) zy=g#i*!+M~1p$?1gerSEICCHv@0`v?Xa4v;d&W~Vl)movG)Brnv39Cq zd-S1FI=|b?SX^dSoZUY`@F${PhpckoRtSr*KTmQmBVNvld!nW?HRD4I@mk1`KRFg- z#4LeZ%Cq|zb--TV>tj@rBNKR;zDD)5mlEu{Q{dCk!gAQVZ*RzB@I2~?xF=W5*@&m% z>g4U&FLgv}&ru@xR>aXt?8J=}q^H+)0^z`Du2;dXVR`1~`x>9s>sTgKaCNsZp-JfE zWXkuwBq1sYKaKQ64W#f({fuW5R)Y^ch`p!4FXCwCkXz%MCJqc$y8gzqQVL(*A44OX zKZKVSSuWJo7Kt4W6^|k_Wm@+{0qX&`dv%c5pQw*`U$kop%AjY*-vGd&yf)%_6WnGv z|L`q<-WM>JHIo)=qkGsdE0?TWAbMVG=@m)_``ulMcGrHCk`@t z$j_GNGX@!5%Iq#5>Z*e#WWuMFVLjSUwA4o^$-yQc^T5GI4X{2<1{*Jhj;jzV&|d;l zfg*6N;%f&R6=PEnOd`!`$VdfQeg%+BdZ+d4U?aqB{88EdwgE{zXt)t4dy{z8;YQi8 zwn?F`qR7`BJ{61be#2omb0uJ6wWsm>!;L0#Toqn-gi&2?TZIpTFJN{`m;J zbn&XZ>PVxp-l=M+*i9MC$Be`ToWc1>qgmQ^gc6nuE^9aS9Xu0eqUG4XCwHN_^yjP) zpF9C)1Ktg{2W~H14xH0h`|!LU?f~3DIKOg&U55~G814u~^1h=mqsH>(ql}1R`EOm> zn?E{E@J~mf@k{uvQASI5c=b@eVu0RQs?JBfYHUdhs)(0>s|?o!?pe6*a3kO*!OekN z4!0dH2kuk2T)5xh0xE^N!r;olwSk)mw*>A(xV>;k;m*Qch5G|e!#67i7YA1xu5sni z`mWA+=nFRnZYEq7+-A4~aHrwEhWj2avAo?2&TRUWW>W*ca|zV1Mpo(b>X4qJ`VSof zo;;6N8Dn&hYg-d9gDlRTpg$ao@U}Ji)-gr}`Gmx8zoA#>!DEfO(q}k}YQ&d1iHR{KYq<9p`1a-uH~g)H<~nP zQYTcfD%BB76W4*MI)AvLfX!9Vxd{9y5cyqa`NG$YW^qo2HV6uabKov`Ci<#L9sc+0 zMzjn+`VFIYNhiJ<${-5BfolS8$!Aa0EAvHf7%k$`>xR1OA$})(8g#qi$HD&=J}u%X zPabEqYwF~uDNKFlz@>nGh!1t(c)*n3ffE2zx1gMN#~H6v`-0yzlE`oTrqMLCNBvMC zS?GZ@CE$ASId5X7f6kA+34W;uSH>H4!eTHAW8o^p)rD(Ti?L=BQ95#!;Y_#-H9}ooePK1=w}k7=OQwNPtJ;t^ zP6G;ko(~6D`5d~zSxdga^Le;0;d-VHOYPZz)N9_MqkE6QDn16Uw1e+XGvXmyzLJJD z#np%hryEHnDm4lf9Y@k4Qrq|wUwpCzz;%JYlx~cS*^dOY)j1742nqYWhe&X@2qpMR zOyN{a?ph%L( zIPiX7H4gj`FfG0gEK58$#E9h6CK(~T!z3d@j!EVNCK)Z#oD{DiwSS2;zx?5#Ct&Jq zil;xP3}SLLwnc(CzXTzG?M7HHPBzBL!9PtsM4b4N zlaC>udt~LlZS0qy&S+`l;Wv?!G#?yzJ)SAI18;Z&-uMK(g*v)4H>Mkrot-@IKas{j zi)iXQ@zf3UeH}RY33&4p`8U}gbKZ0#3>3%O=|+uEC+lV3%VzLf(~UYEoZuQ5g8ntu z2JBxW$+`XE?*J2`ck4@9gNzD;J2Si4 zQVCQn{>3hk1Y(N$0HMWK{T$#`{-ZmAOrE}&!1Mu`n}GbyS?t379nbHlxAegha*!_} zO7CYCkg4r;tu9IDux0<M&kY>=g6^z18sfsY5x;p0j!{ zCp!SM59O&>8u853`U0*SwN}#Z&_r#EA!Ju{HAF_acGYuwv=ZWl?aWJS#2?jjdAZ@< z)k0oY8iFS<%3d8T$O%mrzVl%_YjxnTEOz zTROC~RtwU9eDIoQR=80>YV$fERhH52Wf@A}2N?yK1LSDl0Mhq-3y6lC3?OyyV?$y3 z&TW5s!XM{$1E>i`Hum}7kmH+auXJcqEppd-5Y- zax}4&HWlRzl1TkUnRkEb>!MufI+U)PLI>bUNMXZlGV5ojcx2;NcFs?N&%t!0wY?-= z%`>3+Ef&g&5)OzBY~zq&v}MnB940(bBFMYF2j2y