diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index c4fc22d0df..e82b4b30b8 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -155,18 +155,20 @@ pub fn availability_as_extensions(availabilities: &Option) -> In 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(since) = &availability.since { - result.insert("x-available-since".to_string(), serde_json::Value::String(since.clone())); - } if let Some(stability) = &availability.stability { match stability { Stability::Beta => { result.insert("x-beta".to_string(), serde_json::Value::Bool(true)); } Stability::Experimental => { - result.insert("x-technical-preview".to_string(), serde_json::Value::Bool(true)); + result.insert("x-state".to_string(), serde_json::Value::String("Technical preview".to_string())); + } + 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)); + } } - _ => {} } } } 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 6b94565093..def8ca610b 100644 Binary files a/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm and b/compiler-rs/compiler-wasm-lib/pkg/compiler_wasm_lib_bg.wasm differ diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 9039dfb71b..0e48f22c9f 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -72,7 +72,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" }, "delete": { "tags": [ @@ -106,7 +106,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_async_search/status/{id}": { @@ -142,7 +142,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_async_search": { @@ -301,7 +301,7 @@ "$ref": "#/components/responses/async_search.submit#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/{index}/_async_search": { @@ -463,7 +463,7 @@ "$ref": "#/components/responses/async_search.submit#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_autoscaling/policy/{name}": { @@ -499,7 +499,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" }, "put": { "tags": [ @@ -543,7 +543,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" }, "delete": { "tags": [ @@ -577,7 +577,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_autoscaling/capacity": { @@ -611,7 +611,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_bulk": { @@ -903,7 +903,7 @@ "$ref": "#/components/responses/cat.component_templates#200" } }, - "x-available-since": "5.1.0" + "x-state": "Added in 5.1.0" } }, "/_cat/component_templates/{name}": { @@ -924,7 +924,7 @@ "$ref": "#/components/responses/cat.component_templates#200" } }, - "x-available-since": "5.1.0" + "x-state": "Added in 5.1.0" } }, "/_cat/count": { @@ -1211,7 +1211,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1247,7 +1247,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/datafeeds": { @@ -1277,7 +1277,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1310,7 +1310,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/anomaly_detectors": { @@ -1343,7 +1343,7 @@ "$ref": "#/components/responses/cat.ml_jobs#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1379,7 +1379,7 @@ "$ref": "#/components/responses/cat.ml_jobs#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/trained_models": { @@ -1415,7 +1415,7 @@ "$ref": "#/components/responses/cat.ml_trained_models#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/trained_models/{model_id}": { @@ -1454,7 +1454,7 @@ "$ref": "#/components/responses/cat.ml_trained_models#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/nodeattrs": { @@ -1674,7 +1674,7 @@ } } }, - "x-available-since": "2.1.0" + "x-state": "Added in 2.1.0" } }, "/_cat/segments": { @@ -1781,7 +1781,7 @@ "$ref": "#/components/responses/cat.snapshots#200" } }, - "x-available-since": "2.1.0" + "x-state": "Added in 2.1.0" } }, "/_cat/snapshots/{repository}": { @@ -1805,7 +1805,7 @@ "$ref": "#/components/responses/cat.snapshots#200" } }, - "x-available-since": "2.1.0" + "x-state": "Added in 2.1.0" } }, "/_cat/tasks": { @@ -1879,8 +1879,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "5.0.0" + "x-state": "Technical preview" } }, "/_cat/templates": { @@ -1896,7 +1895,7 @@ "$ref": "#/components/responses/cat.templates#200" } }, - "x-available-since": "5.2.0" + "x-state": "Added in 5.2.0" } }, "/_cat/templates/{name}": { @@ -1917,7 +1916,7 @@ "$ref": "#/components/responses/cat.templates#200" } }, - "x-available-since": "5.2.0" + "x-state": "Added in 5.2.0" } }, "/_cat/thread_pool": { @@ -1996,7 +1995,7 @@ "$ref": "#/components/responses/cat.transforms#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/transforms/{transform_id}": { @@ -2035,7 +2034,7 @@ "$ref": "#/components/responses/cat.transforms#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_ccr/auto_follow/{name}": { @@ -2056,7 +2055,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" }, "put": { "tags": [ @@ -2163,7 +2162,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" }, "delete": { "tags": [ @@ -2196,7 +2195,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/{index}/_ccr/follow": { @@ -2305,7 +2304,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/{index}/_ccr/info": { @@ -2351,7 +2350,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" } }, "/{index}/_ccr/stats": { @@ -2397,7 +2396,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/{index}/_ccr/forget_follower": { @@ -2464,7 +2463,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" } }, "/_ccr/auto_follow": { @@ -2480,7 +2479,7 @@ "$ref": "#/components/responses/ccr.get_auto_follow_pattern#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_ccr/auto_follow/{name}/pause": { @@ -2515,7 +2514,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/{index}/_ccr/pause_follow": { @@ -2551,7 +2550,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_ccr/auto_follow/{name}/resume": { @@ -2586,7 +2585,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/{index}/_ccr/resume_follow": { @@ -2662,7 +2661,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_ccr/stats": { @@ -2696,7 +2695,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/{index}/_ccr/unfollow": { @@ -2731,7 +2730,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_search/scroll": { @@ -2931,7 +2930,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_cluster/allocation/explain": { @@ -2957,7 +2956,7 @@ "$ref": "#/components/responses/cluster.allocation_explain#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -2981,7 +2980,7 @@ "$ref": "#/components/responses/cluster.allocation_explain#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_component_template/{name}": { @@ -3014,7 +3013,7 @@ "$ref": "#/components/responses/cluster.get_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "put": { "tags": [ @@ -3042,7 +3041,7 @@ "$ref": "#/components/responses/cluster.put_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "post": { "tags": [ @@ -3070,7 +3069,7 @@ "$ref": "#/components/responses/cluster.put_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "delete": { "tags": [ @@ -3124,7 +3123,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "head": { "tags": [ @@ -3174,7 +3173,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_cluster/voting_config_exclusions": { @@ -3224,7 +3223,7 @@ } } }, - "x-available-since": "7.0.0" + "x-state": "Added in 7.0.0" }, "delete": { "tags": [ @@ -3252,7 +3251,7 @@ } } }, - "x-available-since": "7.0.0" + "x-state": "Added in 7.0.0" } }, "/_component_template": { @@ -3282,7 +3281,7 @@ "$ref": "#/components/responses/cluster.get_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_cluster/settings": { @@ -3518,7 +3517,7 @@ "$ref": "#/components/responses/cluster.health#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_cluster/health/{index}": { @@ -3572,7 +3571,7 @@ "$ref": "#/components/responses/cluster.health#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_info/{target}": { @@ -3631,7 +3630,7 @@ } } }, - "x-available-since": "8.9.0" + "x-state": "Added in 8.9.0" } }, "/_cluster/pending_tasks": { @@ -3712,7 +3711,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_cluster/reroute": { @@ -3832,7 +3831,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_cluster/state": { @@ -3873,7 +3872,7 @@ "$ref": "#/components/responses/cluster.state#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_cluster/state/{metric}": { @@ -3917,7 +3916,7 @@ "$ref": "#/components/responses/cluster.state#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_cluster/state/{metric}/{index}": { @@ -3964,7 +3963,7 @@ "$ref": "#/components/responses/cluster.state#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_cluster/stats": { @@ -3988,7 +3987,7 @@ "$ref": "#/components/responses/cluster.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_cluster/stats/nodes/{node_id}": { @@ -4015,7 +4014,7 @@ "$ref": "#/components/responses/cluster.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_connector/{connector_id}/_check_in": { @@ -4058,8 +4057,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}": { @@ -4094,8 +4092,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "put": { "tags": [ @@ -4116,8 +4113,7 @@ "$ref": "#/components/responses/connector.put#200" } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "delete": { "tags": [ @@ -4160,8 +4156,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_last_sync": { @@ -4252,8 +4247,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector": { @@ -4352,8 +4346,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "put": { "tags": [ @@ -4369,8 +4362,7 @@ "$ref": "#/components/responses/connector.put#200" } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "post": { "tags": [ @@ -4431,8 +4423,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -4475,8 +4466,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -4511,8 +4501,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "delete": { "tags": [ @@ -4545,8 +4534,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job": { @@ -4645,8 +4633,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "post": { "tags": [ @@ -4698,8 +4685,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -4742,8 +4728,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_api_key_id": { @@ -4804,8 +4789,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_configuration": { @@ -4869,8 +4853,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_error": { @@ -4938,8 +4921,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_filtering": { @@ -5009,8 +4991,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -5071,8 +5052,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_index_name": { @@ -5140,8 +5120,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_name": { @@ -5202,8 +5181,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_native": { @@ -5264,8 +5242,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_pipeline": { @@ -5326,8 +5303,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_scheduling": { @@ -5388,8 +5364,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_service_type": { @@ -5450,8 +5425,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_status": { @@ -5512,8 +5486,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_count": { @@ -5807,7 +5780,7 @@ "$ref": "#/components/responses/create#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -5853,7 +5826,7 @@ "$ref": "#/components/responses/create#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_dangling/{index_uuid}": { @@ -5919,7 +5892,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -5983,7 +5956,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_dangling": { @@ -6016,7 +5989,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{index}/_doc/{id}": { @@ -6957,7 +6930,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_delete_by_query/{task_id}/_rethrottle": { @@ -7002,7 +6975,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_scripts/{id}": { @@ -7190,7 +7163,7 @@ "$ref": "#/components/responses/enrich.get_policy#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "put": { "tags": [ @@ -7245,7 +7218,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "delete": { "tags": [ @@ -7279,7 +7252,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -7332,7 +7305,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/policy": { @@ -7348,7 +7321,7 @@ "$ref": "#/components/responses/enrich.get_policy#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/_stats": { @@ -7383,7 +7356,6 @@ }, "cache_stats": { "description": "Objects containing information about the enrich cache stats on each ingest node.", - "x-available-since": "7.16.0", "type": "array", "items": { "$ref": "#/components/schemas/enrich.stats:CacheStats" @@ -7399,7 +7371,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_eql/search/{id}": { @@ -7454,7 +7426,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -7488,7 +7460,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_eql/search/status/{id}": { @@ -7551,7 +7523,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{index}/_eql/search": { @@ -7592,7 +7564,7 @@ "$ref": "#/components/responses/eql.search#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "post": { "tags": [ @@ -7631,7 +7603,7 @@ "$ref": "#/components/responses/eql.search#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_query": { @@ -7737,8 +7709,7 @@ } } } - }, - "x-available-since": "8.11.0" + } } }, "/{index}/_source/{id}": { @@ -8014,7 +7985,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_explain/{id}": { @@ -8169,7 +8140,7 @@ } } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" } }, "/_features/_reset": { @@ -8202,8 +8173,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "7.12.0" + "x-state": "Technical preview" } }, "/_field_caps": { @@ -8248,7 +8218,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -8291,7 +8261,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_field_caps": { @@ -8339,7 +8309,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -8385,7 +8355,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_fleet/global_checkpoints": { @@ -8486,7 +8456,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_fleet/_fleet_msearch": { @@ -8546,8 +8516,7 @@ "$ref": "#/components/responses/fleet.msearch#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -8605,8 +8574,7 @@ "$ref": "#/components/responses/fleet.msearch#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" } }, "/{index}/_fleet/_fleet_msearch": { @@ -8669,8 +8637,7 @@ "$ref": "#/components/responses/fleet.msearch#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -8731,8 +8698,7 @@ "$ref": "#/components/responses/fleet.msearch#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" } }, "/{index}/_fleet/_fleet_search": { @@ -8888,8 +8854,7 @@ "$ref": "#/components/responses/fleet.search#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -9043,8 +9008,7 @@ "$ref": "#/components/responses/fleet.search#200" } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" } }, "/_script_context": { @@ -9195,7 +9159,7 @@ "$ref": "#/components/responses/health_report#200" } }, - "x-available-since": "8.7.0" + "x-state": "Added in 8.7.0" } }, "/_health_report/{feature}": { @@ -9224,7 +9188,7 @@ "$ref": "#/components/responses/health_report#200" } }, - "x-available-since": "8.7.0" + "x-state": "Added in 8.7.0" } }, "/_ilm/policy/{policy}": { @@ -9250,7 +9214,7 @@ "$ref": "#/components/responses/ilm.get_lifecycle#200" } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" }, "put": { "tags": [ @@ -9318,7 +9282,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" }, "delete": { "tags": [ @@ -9372,7 +9336,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/{index}/_ilm/explain": { @@ -9459,7 +9423,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_ilm/policy": { @@ -9482,7 +9446,7 @@ "$ref": "#/components/responses/ilm.get_lifecycle#200" } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_ilm/status": { @@ -9512,7 +9476,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_ilm/migrate_to_data_tiers": { @@ -9608,7 +9572,7 @@ } } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/_ilm/move/{index}": { @@ -9664,7 +9628,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/{index}/_ilm/remove": { @@ -9714,7 +9678,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/{index}/_ilm/retry": { @@ -9749,7 +9713,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_ilm/start": { @@ -9791,7 +9755,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_ilm/stop": { @@ -9833,7 +9797,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/{index}/_doc": { @@ -10005,7 +9969,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_analyze": { @@ -10193,7 +10157,7 @@ "$ref": "#/components/responses/indices.clone#200" } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" }, "post": { "tags": [ @@ -10226,7 +10190,7 @@ "$ref": "#/components/responses/indices.clone#200" } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" } }, "/{index}/_close": { @@ -10765,7 +10729,7 @@ "$ref": "#/components/responses/indices.get_data_stream#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "put": { "tags": [ @@ -10819,7 +10783,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -10873,7 +10837,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_data_stream/_stats": { @@ -10894,7 +10858,7 @@ "$ref": "#/components/responses/indices.data_streams_stats#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_data_stream/{name}/_stats": { @@ -10918,7 +10882,7 @@ "$ref": "#/components/responses/indices.data_streams_stats#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{index}/_alias/{name}": { @@ -11239,7 +11203,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" }, "put": { "tags": [ @@ -11320,7 +11284,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" }, "delete": { "tags": [ @@ -11384,7 +11348,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" } }, "/_index_template/{name}": { @@ -11417,7 +11381,7 @@ "$ref": "#/components/responses/indices.get_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "put": { "tags": [ @@ -11448,7 +11412,7 @@ "$ref": "#/components/responses/indices.put_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "post": { "tags": [ @@ -11479,7 +11443,7 @@ "$ref": "#/components/responses/indices.put_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -11533,7 +11497,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "head": { "tags": [ @@ -11862,8 +11826,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "7.15.0" + "x-state": "Technical preview" } }, "/{index}/_downsample/{target_index}": { @@ -11919,8 +11882,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.5.0" + "x-state": "Technical preview" } }, "/_alias/{name}": { @@ -12049,7 +12011,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" } }, "/{index}/_field_usage_stats": { @@ -12154,8 +12116,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "7.15.0" + "x-state": "Technical preview" } }, "/_flush": { @@ -12319,7 +12280,7 @@ "$ref": "#/components/responses/indices.forcemerge#200" } }, - "x-available-since": "2.1.0" + "x-state": "Added in 2.1.0" } }, "/{index}/_forcemerge": { @@ -12360,7 +12321,7 @@ "$ref": "#/components/responses/indices.forcemerge#200" } }, - "x-available-since": "2.1.0" + "x-state": "Added in 2.1.0" } }, "/_alias": { @@ -12451,7 +12412,7 @@ "$ref": "#/components/responses/indices.get_data_stream#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_mapping/field/{fields}": { @@ -12554,7 +12515,7 @@ "$ref": "#/components/responses/indices.get_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_mapping": { @@ -13026,7 +12987,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_data_stream/_modify": { @@ -13071,7 +13032,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" } }, "/{index}/_open": { @@ -13223,7 +13184,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_recovery": { @@ -13407,7 +13368,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "post": { "tags": [ @@ -13434,7 +13395,7 @@ "$ref": "#/components/responses/indices.reload_search_analyzers#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_resolve/cluster/{name}": { @@ -13513,7 +13474,7 @@ } } }, - "x-available-since": "8.13.0" + "x-state": "Added in 8.13.0" } }, "/_resolve/index/{name}": { @@ -13604,7 +13565,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{alias}/_rollover": { @@ -13640,7 +13601,7 @@ "$ref": "#/components/responses/indices.rollover#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{alias}/_rollover/{new_index}": { @@ -13679,7 +13640,7 @@ "$ref": "#/components/responses/indices.rollover#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_segments": { @@ -13836,7 +13797,7 @@ "$ref": "#/components/responses/indices.shrink#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -13869,7 +13830,7 @@ "$ref": "#/components/responses/indices.shrink#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_index_template/_simulate_index/{name}": { @@ -13939,7 +13900,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_index_template/_simulate": { @@ -14035,7 +13996,7 @@ "$ref": "#/components/responses/indices.split#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" }, "post": { "tags": [ @@ -14068,7 +14029,7 @@ "$ref": "#/components/responses/indices.split#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_stats": { @@ -14113,7 +14074,7 @@ "$ref": "#/components/responses/indices.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_stats/{metric}": { @@ -14161,7 +14122,7 @@ "$ref": "#/components/responses/indices.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_stats": { @@ -14209,7 +14170,7 @@ "$ref": "#/components/responses/indices.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_stats/{metric}": { @@ -14260,7 +14221,7 @@ "$ref": "#/components/responses/indices.stats#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_unfreeze": { @@ -14367,7 +14328,7 @@ } } }, - "x-available-since": "6.6.0" + "x-state": "Added in 6.6.0" } }, "/_aliases": { @@ -14431,7 +14392,7 @@ } } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_validate/query": { @@ -14488,7 +14449,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -14543,7 +14504,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_validate/query": { @@ -14603,7 +14564,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -14661,7 +14622,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_inference/{inference_id}": { @@ -14681,8 +14642,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -14703,8 +14663,7 @@ "$ref": "#/components/responses/inference.put#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -14728,8 +14687,7 @@ "$ref": "#/components/responses/inference.inference#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -14753,8 +14711,7 @@ "$ref": "#/components/responses/inference.delete#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/_inference/{task_type}/{inference_id}": { @@ -14777,8 +14734,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -14802,8 +14758,7 @@ "$ref": "#/components/responses/inference.put#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -14830,8 +14785,7 @@ "$ref": "#/components/responses/inference.inference#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -14858,8 +14812,7 @@ "$ref": "#/components/responses/inference.delete#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/_inference": { @@ -14874,8 +14827,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/": { @@ -14960,7 +14912,7 @@ "$ref": "#/components/responses/ingest.get_geoip_database#200" } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "put": { "tags": [ @@ -15035,7 +14987,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "delete": { "tags": [ @@ -15088,7 +15040,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_ingest/pipeline/{id}": { @@ -15115,7 +15067,7 @@ "$ref": "#/components/responses/ingest.get_pipeline#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "put": { "tags": [ @@ -15219,7 +15171,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "delete": { "tags": [ @@ -15272,7 +15224,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/geoip/stats": { @@ -15310,7 +15262,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ingest/geoip/database": { @@ -15330,7 +15282,7 @@ "$ref": "#/components/responses/ingest.get_geoip_database#200" } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_ingest/pipeline": { @@ -15354,7 +15306,7 @@ "$ref": "#/components/responses/ingest.get_pipeline#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/processor/grok": { @@ -15388,7 +15340,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -15411,7 +15363,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -15432,7 +15384,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/pipeline/{id}/_simulate": { @@ -15458,7 +15410,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -15482,7 +15434,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{index}/_knn_search": { @@ -15509,8 +15461,7 @@ } }, "deprecated": true, - "x-available-since": "8.0.0", - "x-technical-preview": true + "x-state": "Technical preview" }, "post": { "tags": [ @@ -15535,8 +15486,7 @@ } }, "deprecated": true, - "x-available-since": "8.0.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_license": { @@ -15677,7 +15627,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_license/trial_status": { @@ -15707,7 +15657,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_license/start_basic": { @@ -15776,7 +15726,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_license/start_trial": { @@ -15837,7 +15787,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_logstash/pipeline/{id}": { @@ -15857,7 +15807,7 @@ "$ref": "#/components/responses/logstash.get_pipeline#200" } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" }, "put": { "tags": [ @@ -15896,7 +15846,7 @@ } } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" }, "delete": { "tags": [ @@ -15925,7 +15875,7 @@ } } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" } }, "/_logstash/pipeline": { @@ -15940,7 +15890,7 @@ "$ref": "#/components/responses/logstash.get_pipeline#200" } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" } }, "/_mget": { @@ -15987,7 +15937,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -16032,7 +15982,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_mget": { @@ -16082,7 +16032,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -16130,7 +16080,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_migration/deprecations": { @@ -16145,7 +16095,7 @@ "$ref": "#/components/responses/migration.deprecations#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/{index}/_migration/deprecations": { @@ -16165,7 +16115,7 @@ "$ref": "#/components/responses/migration.deprecations#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_migration/system_features": { @@ -16202,7 +16152,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" }, "post": { "tags": [ @@ -16237,7 +16187,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" } }, "/_ml/trained_models/{model_id}/deployment/cache/_clear": { @@ -16281,7 +16231,7 @@ } } }, - "x-available-since": "8.5.0" + "x-state": "Added in 8.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -16377,7 +16327,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -16406,7 +16356,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "put": { "tags": [ @@ -16477,7 +16427,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -16504,7 +16454,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "delete": { "tags": [ @@ -16538,7 +16488,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -16584,7 +16534,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -16646,7 +16596,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "delete": { "tags": [ @@ -16706,7 +16656,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -16739,7 +16689,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "put": { "tags": [ @@ -16876,7 +16826,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "delete": { "tags": [ @@ -16929,7 +16879,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -16956,7 +16906,7 @@ "$ref": "#/components/responses/ml.get_datafeeds#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -17159,7 +17109,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -17202,7 +17152,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/_delete_expired_data/{job_id}": { @@ -17232,7 +17182,7 @@ "$ref": "#/components/responses/ml.delete_expired_data#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/_delete_expired_data": { @@ -17259,7 +17209,7 @@ "$ref": "#/components/responses/ml.delete_expired_data#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -17286,7 +17236,7 @@ "$ref": "#/components/responses/ml.get_filters#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -17362,7 +17312,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -17396,7 +17346,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast": { @@ -17495,7 +17445,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" }, "delete": { "tags": [ @@ -17520,7 +17470,7 @@ "$ref": "#/components/responses/ml.delete_forecast#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast/{forecast_id}": { @@ -17550,7 +17500,7 @@ "$ref": "#/components/responses/ml.delete_forecast#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -17577,7 +17527,7 @@ "$ref": "#/components/responses/ml.get_jobs#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -17760,7 +17710,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -17824,7 +17774,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}": { @@ -17868,7 +17818,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -17910,7 +17860,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -17955,7 +17905,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -17996,7 +17946,7 @@ "$ref": "#/components/responses/ml.get_trained_models#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" }, "put": { "tags": [ @@ -18104,7 +18054,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" }, "delete": { "tags": [ @@ -18148,7 +18098,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -18205,7 +18155,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "delete": { "tags": [ @@ -18250,7 +18200,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -18310,7 +18260,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_ml/data_frame/_evaluate": { @@ -18369,7 +18319,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/_explain": { @@ -18388,7 +18338,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "post": { "tags": [ @@ -18405,7 +18355,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/{id}/_explain": { @@ -18429,7 +18379,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "post": { "tags": [ @@ -18451,7 +18401,7 @@ "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -18576,7 +18526,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets/{timestamp}": { @@ -18630,7 +18580,7 @@ "$ref": "#/components/responses/ml.get_buckets#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -18682,7 +18632,7 @@ "$ref": "#/components/responses/ml.get_buckets#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets": { @@ -18733,7 +18683,7 @@ "$ref": "#/components/responses/ml.get_buckets#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -18782,7 +18732,7 @@ "$ref": "#/components/responses/ml.get_buckets#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -18882,7 +18832,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -18948,7 +18898,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars": { @@ -18974,7 +18924,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -18998,7 +18948,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories/{category_id}": { @@ -19033,7 +18983,7 @@ "$ref": "#/components/responses/ml.get_categories#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -19066,7 +19016,7 @@ "$ref": "#/components/responses/ml.get_categories#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories": { @@ -19098,7 +19048,7 @@ "$ref": "#/components/responses/ml.get_categories#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -19128,7 +19078,7 @@ "$ref": "#/components/responses/ml.get_categories#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/data_frame/analytics": { @@ -19158,7 +19108,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -19187,7 +19137,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -19219,7 +19169,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -19243,7 +19193,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -19264,7 +19214,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/datafeeds": { @@ -19288,7 +19238,7 @@ "$ref": "#/components/responses/ml.get_datafeeds#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/filters": { @@ -19312,7 +19262,7 @@ "$ref": "#/components/responses/ml.get_filters#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/influencers": { @@ -19360,7 +19310,7 @@ "$ref": "#/components/responses/ml.get_influencers#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -19406,7 +19356,7 @@ "$ref": "#/components/responses/ml.get_influencers#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -19426,7 +19376,7 @@ "$ref": "#/components/responses/ml.get_job_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -19449,7 +19399,7 @@ "$ref": "#/components/responses/ml.get_job_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors": { @@ -19473,7 +19423,7 @@ "$ref": "#/components/responses/ml.get_jobs#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/memory/_stats": { @@ -19500,7 +19450,7 @@ "$ref": "#/components/responses/ml.get_memory_stats#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_ml/memory/{node_id}/_stats": { @@ -19530,7 +19480,7 @@ "$ref": "#/components/responses/ml.get_memory_stats#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade/_stats": { @@ -19601,7 +19551,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots": { @@ -19642,7 +19592,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -19681,7 +19631,7 @@ "$ref": "#/components/responses/ml.get_model_snapshots#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -19726,7 +19676,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" }, "post": { "tags": [ @@ -19769,7 +19719,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_ml/anomaly_detectors/{job_id}/results/records": { @@ -19817,7 +19767,7 @@ "$ref": "#/components/responses/ml.get_records#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -19863,7 +19813,7 @@ "$ref": "#/components/responses/ml.get_records#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models": { @@ -19901,7 +19851,7 @@ "$ref": "#/components/responses/ml.get_trained_models#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -19931,7 +19881,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/_stats": { @@ -19958,7 +19908,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -19984,7 +19934,7 @@ "$ref": "#/components/responses/ml.infer_trained_model#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" } }, "/_ml/trained_models/{model_id}/deployment/_infer": { @@ -20010,7 +19960,7 @@ "$ref": "#/components/responses/ml.infer_trained_model#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" } }, "/_ml/info": { @@ -20053,7 +20003,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -20125,7 +20075,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_data": { @@ -20259,7 +20209,7 @@ } }, "deprecated": true, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -20278,7 +20228,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "post": { "tags": [ @@ -20295,7 +20245,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -20319,7 +20269,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "post": { "tags": [ @@ -20341,7 +20291,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -20371,7 +20321,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -20399,7 +20349,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -20426,7 +20376,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -20451,7 +20401,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -20526,7 +20476,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -20565,7 +20515,6 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", - "x-available-since": "8.2.0", "type": "array", "items": { "type": "string" @@ -20573,7 +20522,6 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", - "x-available-since": "8.9.0", "type": "array", "items": { "type": "number" @@ -20600,7 +20548,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -20656,7 +20604,7 @@ } } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_revert": { @@ -20736,7 +20684,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/set_upgrade_mode": { @@ -20781,7 +20729,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -20839,7 +20787,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -20938,7 +20886,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -21062,7 +21010,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -21136,7 +21084,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -21232,7 +21180,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -21295,7 +21243,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -21413,7 +21361,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -21619,7 +21567,7 @@ } } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -21704,7 +21652,7 @@ } } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -21911,7 +21859,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_update": { @@ -21990,7 +21938,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -22059,7 +22007,7 @@ } }, "x-beta": true, - "x-available-since": "8.6.0" + "x-state": "Added in 8.6.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade": { @@ -22139,7 +22087,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/_validate": { @@ -22200,7 +22148,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_ml/anomaly_detectors/_validate/detector": { @@ -22232,7 +22180,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_monitoring/bulk": { @@ -22261,7 +22209,7 @@ "$ref": "#/components/responses/monitoring.bulk#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -22288,7 +22236,7 @@ "$ref": "#/components/responses/monitoring.bulk#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_monitoring/{type}/bulk": { @@ -22320,7 +22268,7 @@ "$ref": "#/components/responses/monitoring.bulk#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -22350,7 +22298,7 @@ "$ref": "#/components/responses/monitoring.bulk#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_msearch": { @@ -22409,7 +22357,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -22466,7 +22414,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_msearch": { @@ -22528,7 +22476,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -22588,7 +22536,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_msearch/template": { @@ -22623,7 +22571,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -22656,7 +22604,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{index}/_msearch/template": { @@ -22694,7 +22642,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -22730,7 +22678,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_mtermvectors": { @@ -22998,8 +22946,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" } }, "/_nodes/{node_id}/_repositories_metering": { @@ -23035,8 +22982,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "7.16.0" + "x-state": "Technical preview" } }, "/_nodes/hot_threads": { @@ -23147,7 +23093,7 @@ "$ref": "#/components/responses/nodes.info#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_nodes/{node_id}": { @@ -23176,7 +23122,7 @@ "$ref": "#/components/responses/nodes.info#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_nodes/{metric}": { @@ -23205,7 +23151,7 @@ "$ref": "#/components/responses/nodes.info#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_nodes/{node_id}/{metric}": { @@ -23237,7 +23183,7 @@ "$ref": "#/components/responses/nodes.info#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_nodes/reload_secure_settings": { @@ -23260,7 +23206,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_nodes/{node_id}/reload_secure_settings": { @@ -23286,7 +23232,7 @@ "$ref": "#/components/responses/nodes.reload_secure_settings#200" } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_nodes/stats": { @@ -23609,7 +23555,7 @@ "$ref": "#/components/responses/nodes.usage#200" } }, - "x-available-since": "6.0.0" + "x-state": "Added in 6.0.0" } }, "/_nodes/{node_id}/usage": { @@ -23632,7 +23578,7 @@ "$ref": "#/components/responses/nodes.usage#200" } }, - "x-available-since": "6.0.0" + "x-state": "Added in 6.0.0" } }, "/_nodes/usage/{metric}": { @@ -23655,7 +23601,7 @@ "$ref": "#/components/responses/nodes.usage#200" } }, - "x-available-since": "6.0.0" + "x-state": "Added in 6.0.0" } }, "/_nodes/{node_id}/usage/{metric}": { @@ -23681,7 +23627,7 @@ "$ref": "#/components/responses/nodes.usage#200" } }, - "x-available-since": "6.0.0" + "x-state": "Added in 6.0.0" } }, "/{index}/_pit": { @@ -23794,7 +23740,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_scripts/{id}/{context}": { @@ -23902,7 +23848,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "put": { "tags": [ @@ -23993,7 +23939,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "delete": { "tags": [ @@ -24037,7 +23983,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -24072,7 +24018,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -24141,7 +24087,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -24174,7 +24120,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_query_rules": { @@ -24233,7 +24179,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_rank_eval": { @@ -24265,7 +24211,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -24295,7 +24241,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/{index}/_rank_eval": { @@ -24330,7 +24276,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -24363,7 +24309,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_reindex": { @@ -24556,7 +24502,7 @@ } } }, - "x-available-since": "2.3.0" + "x-state": "Added in 2.3.0" } }, "/_reindex/{task_id}/_rethrottle": { @@ -24612,7 +24558,7 @@ } } }, - "x-available-since": "2.4.0" + "x-state": "Added in 2.4.0" } }, "/_render/template": { @@ -24706,8 +24652,7 @@ "$ref": "#/components/responses/rollup.get_jobs#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" }, "put": { "tags": [ @@ -24790,8 +24735,7 @@ } } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -24838,8 +24782,7 @@ } } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_rollup/job": { @@ -24854,8 +24797,7 @@ "$ref": "#/components/responses/rollup.get_jobs#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_rollup/data/{id}": { @@ -24875,8 +24817,7 @@ "$ref": "#/components/responses/rollup.get_rollup_caps#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_rollup/data": { @@ -24891,8 +24832,7 @@ "$ref": "#/components/responses/rollup.get_rollup_caps#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/{index}/_rollup/data": { @@ -24930,8 +24870,7 @@ } } }, - "x-available-since": "6.4.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/{index}/_rollup_search": { @@ -24960,8 +24899,7 @@ "$ref": "#/components/responses/rollup.rollup_search#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" }, "post": { "tags": [ @@ -24988,8 +24926,7 @@ "$ref": "#/components/responses/rollup.rollup_search#200" } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_rollup/job/{id}/_start": { @@ -25032,8 +24969,7 @@ } } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_rollup/job/{id}/_stop": { @@ -25096,8 +25032,7 @@ } } }, - "x-available-since": "6.3.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_scripts/painless/_execute": { @@ -25116,8 +25051,7 @@ "$ref": "#/components/responses/scripts_painless_execute#200" } }, - "x-technical-preview": true, - "x-available-since": "6.3.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -25134,8 +25068,7 @@ "$ref": "#/components/responses/scripts_painless_execute#200" } }, - "x-technical-preview": true, - "x-available-since": "6.3.0" + "x-state": "Technical preview" } }, "/_search": { @@ -25792,8 +25725,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "put": { "tags": [ @@ -25854,8 +25786,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "delete": { "tags": [ @@ -25889,8 +25820,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/_application/analytics/{name}": { @@ -25910,8 +25840,7 @@ "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -25944,8 +25873,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -25979,8 +25907,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" } }, "/_application/analytics": { @@ -25995,8 +25922,7 @@ "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" } }, "/_application/search_application": { @@ -26065,8 +25991,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/_application/search_application/{name}/_search": { @@ -26093,8 +26018,7 @@ "$ref": "#/components/responses/search_application.search#200" } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "post": { "tags": [ @@ -26119,8 +26043,7 @@ "$ref": "#/components/responses/search_application.search#200" } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -26177,7 +26100,7 @@ "$ref": "#/components/responses/search_mvt#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" }, "post": { "tags": [ @@ -26232,7 +26155,7 @@ "$ref": "#/components/responses/search_mvt#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_search_shards": { @@ -26429,7 +26352,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" }, "post": { "tags": [ @@ -26486,7 +26409,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" } }, "/{index}/_search/template": { @@ -26548,7 +26471,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" }, "post": { "tags": [ @@ -26608,7 +26531,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" } }, "/_searchable_snapshots/cache/stats": { @@ -26628,8 +26551,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats#200" } }, - "x-available-since": "7.13.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_searchable_snapshots/{node_id}/cache/stats": { @@ -26652,8 +26574,7 @@ "$ref": "#/components/responses/searchable_snapshots.cache_stats#200" } }, - "x-available-since": "7.13.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_searchable_snapshots/cache/clear": { @@ -26685,8 +26606,7 @@ "$ref": "#/components/responses/searchable_snapshots.clear_cache#200" } }, - "x-available-since": "7.10.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/{index}/_searchable_snapshots/cache/clear": { @@ -26721,8 +26641,7 @@ "$ref": "#/components/responses/searchable_snapshots.clear_cache#200" } }, - "x-available-since": "7.10.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_snapshot/{repository}/{snapshot}/_mount": { @@ -26839,7 +26758,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_searchable_snapshots/stats": { @@ -26859,7 +26778,7 @@ "$ref": "#/components/responses/searchable_snapshots.stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/{index}/_searchable_snapshots/stats": { @@ -26882,7 +26801,7 @@ "$ref": "#/components/responses/searchable_snapshots.stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_security/profile/_activate": { @@ -26931,7 +26850,7 @@ } } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_security/_authenticate": { @@ -27017,7 +26936,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/role": { @@ -27113,7 +27032,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "delete": { "tags": [ @@ -27187,7 +27106,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_security/user/{username}/_password": { @@ -27332,7 +27251,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_security/privilege/{application}/_clear_cache": { @@ -27386,7 +27305,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_security/realm/{realms}/_clear_cache": { @@ -27697,7 +27616,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "put": { "tags": [ @@ -27719,7 +27638,7 @@ "$ref": "#/components/responses/security.create_api_key#200" } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "post": { "tags": [ @@ -27741,7 +27660,7 @@ "$ref": "#/components/responses/security.create_api_key#200" } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "delete": { "tags": [ @@ -27826,7 +27745,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" } }, "/_security/service/{namespace}/{service}/credential/token/{name}": { @@ -27953,7 +27872,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/service/{namespace}/{service}/credential/token": { @@ -28001,7 +27920,7 @@ "$ref": "#/components/responses/security.get_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "delete": { "tags": [ @@ -28061,7 +27980,7 @@ } } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/role/{name}": { @@ -28199,7 +28118,7 @@ "$ref": "#/components/responses/security.get_role_mapping#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -28223,7 +28142,7 @@ "$ref": "#/components/responses/security.put_role_mapping#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "post": { "tags": [ @@ -28247,7 +28166,7 @@ "$ref": "#/components/responses/security.put_role_mapping#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "delete": { "tags": [ @@ -28298,7 +28217,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/user/{username}": { @@ -28483,7 +28402,7 @@ "$ref": "#/components/responses/security.disable_user_profile#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" }, "post": { "tags": [ @@ -28504,7 +28423,7 @@ "$ref": "#/components/responses/security.disable_user_profile#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_security/user/{username}/_enable": { @@ -28569,7 +28488,7 @@ "$ref": "#/components/responses/security.enable_user_profile#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" }, "post": { "tags": [ @@ -28590,7 +28509,7 @@ "$ref": "#/components/responses/security.enable_user_profile#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_security/enroll/kibana": { @@ -28624,7 +28543,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_security/enroll/node": { @@ -28677,7 +28596,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_security/privilege/_builtin": { @@ -28714,7 +28633,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_security/privilege": { @@ -28729,7 +28648,7 @@ "$ref": "#/components/responses/security.get_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "put": { "tags": [ @@ -28750,7 +28669,7 @@ "$ref": "#/components/responses/security.put_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "post": { "tags": [ @@ -28771,7 +28690,7 @@ "$ref": "#/components/responses/security.put_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/privilege/{application}": { @@ -28791,7 +28710,7 @@ "$ref": "#/components/responses/security.get_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/role_mapping": { @@ -28806,7 +28725,7 @@ "$ref": "#/components/responses/security.get_role_mapping#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/service/{namespace}/{service}": { @@ -28829,7 +28748,7 @@ "$ref": "#/components/responses/security.get_service_accounts#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_security/service/{namespace}": { @@ -28849,7 +28768,7 @@ "$ref": "#/components/responses/security.get_service_accounts#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_security/service": { @@ -28864,7 +28783,7 @@ "$ref": "#/components/responses/security.get_service_accounts#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_security/service/{namespace}/{service}/credential": { @@ -28933,7 +28852,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_security/oauth2/token": { @@ -29014,7 +28933,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "delete": { "tags": [ @@ -29080,7 +28999,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/user": { @@ -29199,7 +29118,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_security/profile/{uid}": { @@ -29278,7 +29197,7 @@ } } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_security/api_key/grant": { @@ -29359,7 +29278,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_security/user/_has_privileges": { @@ -29378,7 +29297,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "post": { "tags": [ @@ -29395,7 +29314,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/user/{user}/_has_privileges": { @@ -29419,7 +29338,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "post": { "tags": [ @@ -29441,7 +29360,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/profile/_has_privileges": { @@ -29459,7 +29378,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" }, "post": { "tags": [ @@ -29475,7 +29394,7 @@ "$ref": "#/components/responses/security.has_privileges_user_profile#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" } }, "/_security/_query/api_key": { @@ -29505,7 +29424,7 @@ "$ref": "#/components/responses/security.query_api_keys#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" }, "post": { "tags": [ @@ -29533,7 +29452,7 @@ "$ref": "#/components/responses/security.query_api_keys#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_security/_query/role": { @@ -29552,7 +29471,7 @@ "$ref": "#/components/responses/security.query_role#200" } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "post": { "tags": [ @@ -29569,7 +29488,7 @@ "$ref": "#/components/responses/security.query_role#200" } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_security/_query/user": { @@ -29593,7 +29512,7 @@ "$ref": "#/components/responses/security.query_user#200" } }, - "x-available-since": "8.14.0" + "x-state": "Added in 8.14.0" }, "post": { "tags": [ @@ -29615,7 +29534,7 @@ "$ref": "#/components/responses/security.query_user#200" } }, - "x-available-since": "8.14.0" + "x-state": "Added in 8.14.0" } }, "/_security/saml/authenticate": { @@ -29688,7 +29607,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_security/saml/complete_logout": { @@ -29737,7 +29656,7 @@ } } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/_security/saml/invalidate": { @@ -29802,7 +29721,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_security/saml/logout": { @@ -29855,7 +29774,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_security/saml/prepare": { @@ -29917,7 +29836,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_security/saml/metadata/{realm_name}": { @@ -29960,7 +29879,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_security/profile/_suggest": { @@ -29983,7 +29902,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" }, "post": { "tags": [ @@ -30004,7 +29923,7 @@ "$ref": "#/components/responses/security.suggest_user_profiles#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_security/api_key/{id}": { @@ -30076,7 +29995,7 @@ } } }, - "x-available-since": "8.4.0" + "x-state": "Added in 8.4.0" } }, "/_security/profile/{uid}/_data": { @@ -30108,7 +30027,7 @@ "$ref": "#/components/responses/security.update_user_profile_data#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" }, "post": { "tags": [ @@ -30138,7 +30057,7 @@ "$ref": "#/components/responses/security.update_user_profile_data#200" } }, - "x-available-since": "8.2.0" + "x-state": "Added in 8.2.0" } }, "/_nodes/{node_id}/shutdown": { @@ -30165,7 +30084,7 @@ "$ref": "#/components/responses/shutdown.get_node#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "put": { "tags": [ @@ -30250,7 +30169,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "delete": { "tags": [ @@ -30304,7 +30223,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_nodes/shutdown": { @@ -30328,7 +30247,7 @@ "$ref": "#/components/responses/shutdown.get_node#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_slm/policy/{policy_id}": { @@ -30348,7 +30267,7 @@ "$ref": "#/components/responses/slm.get_lifecycle#200" } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" }, "put": { "tags": [ @@ -30428,7 +30347,7 @@ } } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" }, "delete": { "tags": [ @@ -30461,7 +30380,7 @@ } } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" } }, "/_slm/policy/{policy_id}/_execute": { @@ -30504,7 +30423,7 @@ } } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" } }, "/_slm/_execute_retention": { @@ -30526,7 +30445,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_slm/policy": { @@ -30541,7 +30460,7 @@ "$ref": "#/components/responses/slm.get_lifecycle#200" } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" } }, "/_slm/stats": { @@ -30610,7 +30529,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_slm/status": { @@ -30640,7 +30559,7 @@ } } }, - "x-available-since": "7.6.0" + "x-state": "Added in 7.6.0" } }, "/_slm/start": { @@ -30662,7 +30581,7 @@ } } }, - "x-available-since": "7.6.0" + "x-state": "Added in 7.6.0" } }, "/_slm/stop": { @@ -30684,7 +30603,7 @@ } } }, - "x-available-since": "7.6.0" + "x-state": "Added in 7.6.0" } }, "/_snapshot/{repository}/_cleanup": { @@ -30747,7 +30666,7 @@ } } }, - "x-available-since": "7.4.0" + "x-state": "Added in 7.4.0" } }, "/_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}": { @@ -30841,7 +30760,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_snapshot/{repository}/{snapshot}": { @@ -31027,12 +30946,10 @@ }, "total": { "description": "The total number of snapshots that match the request when ignoring size limit or after query parameter.", - "x-available-since": "7.15.0", "type": "number" }, "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-available-since": "7.15.0", "type": "number" } }, @@ -31045,7 +30962,7 @@ } } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "put": { "tags": [ @@ -31075,7 +30992,7 @@ "$ref": "#/components/responses/snapshot.create#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "post": { "tags": [ @@ -31105,7 +31022,7 @@ "$ref": "#/components/responses/snapshot.create#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "delete": { "tags": [ @@ -31184,7 +31101,7 @@ "$ref": "#/components/responses/snapshot.get_repository#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "put": { "tags": [ @@ -31214,7 +31131,7 @@ "$ref": "#/components/responses/snapshot.create_repository#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "post": { "tags": [ @@ -31244,7 +31161,7 @@ "$ref": "#/components/responses/snapshot.create_repository#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" }, "delete": { "tags": [ @@ -31297,7 +31214,7 @@ } } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" } }, "/_snapshot": { @@ -31320,7 +31237,7 @@ "$ref": "#/components/responses/snapshot.get_repository#200" } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" } }, "/_snapshot/{repository}/_verify_integrity": { @@ -31435,8 +31352,7 @@ } } }, - "x-available-since": "8.16.0", - "x-technical-preview": true + "x-state": "Technical preview" } }, "/_snapshot/{repository}/{snapshot}/_restore": { @@ -31557,7 +31473,7 @@ } } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" } }, "/_snapshot/_status": { @@ -31580,7 +31496,7 @@ "$ref": "#/components/responses/snapshot.status#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_snapshot/{repository}/_status": { @@ -31606,7 +31522,7 @@ "$ref": "#/components/responses/snapshot.status#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_snapshot/{repository}/{snapshot}/_status": { @@ -31635,7 +31551,7 @@ "$ref": "#/components/responses/snapshot.status#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_snapshot/{repository}/_verify": { @@ -31701,7 +31617,7 @@ } } }, - "x-available-since": "0.0.0" + "x-state": "Added in 0.0.0" } }, "/_sql/close": { @@ -31750,7 +31666,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_sql/async/delete/{id}": { @@ -31786,7 +31702,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql/async/{id}": { @@ -31898,7 +31814,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql/async/status/{id}": { @@ -31963,7 +31879,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql": { @@ -31986,7 +31902,7 @@ "$ref": "#/components/responses/sql.query#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -32007,7 +31923,7 @@ "$ref": "#/components/responses/sql.query#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_sql/translate": { @@ -32025,7 +31941,7 @@ "$ref": "#/components/responses/sql.translate#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -32041,7 +31957,7 @@ "$ref": "#/components/responses/sql.translate#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_ssl/certificates": { @@ -32066,7 +31982,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_synonyms/{id}": { @@ -32136,7 +32052,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -32210,7 +32126,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -32243,7 +32159,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -32289,7 +32205,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -32351,7 +32267,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -32395,7 +32311,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_synonyms": { @@ -32454,7 +32370,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_tasks/_cancel": { @@ -32483,8 +32399,7 @@ "$ref": "#/components/responses/tasks.cancel#200" } }, - "x-technical-preview": true, - "x-available-since": "2.3.0" + "x-state": "Technical preview" } }, "/_tasks/{task_id}/_cancel": { @@ -32516,8 +32431,7 @@ "$ref": "#/components/responses/tasks.cancel#200" } }, - "x-technical-preview": true, - "x-available-since": "2.3.0" + "x-state": "Technical preview" } }, "/_tasks/{task_id}": { @@ -32591,8 +32505,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "5.0.0" + "x-state": "Technical preview" } }, "/_tasks": { @@ -32709,8 +32622,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "2.3.0" + "x-state": "Technical preview" } }, "/{index}/_terms_enum": { @@ -32734,7 +32646,7 @@ "$ref": "#/components/responses/terms_enum#200" } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" }, "post": { "tags": [ @@ -32756,7 +32668,7 @@ "$ref": "#/components/responses/terms_enum#200" } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/{index}/_termvectors/{id}": { @@ -33265,7 +33177,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_text_structure/test_grok_pattern": { @@ -33288,7 +33200,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern#200" } }, - "x-available-since": "8.13.0" + "x-state": "Added in 8.13.0" }, "post": { "tags": [ @@ -33309,7 +33221,7 @@ "$ref": "#/components/responses/text_structure.test_grok_pattern#200" } }, - "x-available-since": "8.13.0" + "x-state": "Added in 8.13.0" } }, "/_transform/{transform_id}": { @@ -33342,7 +33254,7 @@ "$ref": "#/components/responses/transform.get_transform#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "put": { "tags": [ @@ -33443,7 +33355,7 @@ } } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "delete": { "tags": [ @@ -33507,7 +33419,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform": { @@ -33537,7 +33449,7 @@ "$ref": "#/components/responses/transform.get_transform#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -33628,7 +33540,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -33655,7 +33567,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "post": { "tags": [ @@ -33680,7 +33592,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/_transform/_preview": { @@ -33704,7 +33616,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "post": { "tags": [ @@ -33726,7 +33638,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/_transform/{transform_id}/_reset": { @@ -33772,7 +33684,7 @@ } } }, - "x-available-since": "8.1.0" + "x-state": "Added in 8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -33818,7 +33730,7 @@ } } }, - "x-available-since": "8.7.0" + "x-state": "Added in 8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -33874,7 +33786,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -33960,7 +33872,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -34115,7 +34027,7 @@ } } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/_transform/_upgrade": { @@ -34179,7 +34091,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" } }, "/{index}/_update/{id}": { @@ -34815,7 +34727,7 @@ } } }, - "x-available-since": "2.4.0" + "x-state": "Added in 2.4.0" } }, "/_update_by_query/{task_id}/_rethrottle": { @@ -34871,7 +34783,7 @@ } } }, - "x-available-since": "6.5.0" + "x-state": "Added in 6.5.0" } }, "/_watcher/watch/{watch_id}/_ack": { @@ -35083,7 +34995,7 @@ } } }, - "x-available-since": "5.6.0" + "x-state": "Added in 5.6.0" }, "put": { "tags": [ @@ -35307,7 +35219,7 @@ "$ref": "#/components/responses/watcher.query_watches#200" } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" }, "post": { "tags": [ @@ -35323,7 +35235,7 @@ "$ref": "#/components/responses/watcher.query_watches#200" } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_watcher/_start": { @@ -35367,7 +35279,7 @@ "$ref": "#/components/responses/watcher.stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_watcher/stats/{metric}": { @@ -35393,7 +35305,7 @@ "$ref": "#/components/responses/watcher.stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_watcher/_stop": { @@ -41421,7 +41333,6 @@ "url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-text-expansion-query.html" }, "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-available-since": "8.8.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl:TextExpansionQuery" @@ -41432,7 +41343,6 @@ "weighted_tokens": { "deprecated": true, "description": "Supports returning text_expansion query results by sending in precomputed tokens with the query.", - "x-available-since": "8.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl:WeightedTokensQuery" @@ -43938,7 +43848,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" } }, @@ -44477,7 +44386,6 @@ "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-available-since": "7.10.0", "type": "boolean" }, "flags": { @@ -45013,8 +44921,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-technical-preview": true, - "x-available-since": "8.15.0", + "x-state": "Technical preview", "type": "boolean" }, "pruning_config": { @@ -45076,7 +44983,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" } }, @@ -45189,7 +45095,6 @@ "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-available-since": "7.10.0", "type": "boolean" }, "rewrite": { @@ -47553,7 +47458,6 @@ }, "shard_seed": { "description": "When combined with seed, setting shard_seed ensures 100% consistent sampling over shards where data is exactly the same.", - "x-available-since": "8.14.0", "type": "number" } }, @@ -49381,7 +49285,7 @@ }, "dataset.size": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-available-since": "8.11.0", + "x-state": "Added in 8.11.0", "oneOf": [ { "type": "string" @@ -50739,7 +50643,6 @@ "type": "string" }, "type": { - "x-available-since": "8.0.0", "type": "string" } } @@ -51425,7 +51328,7 @@ }, "dataset": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-available-since": "8.11.0", + "x-state": "Added in 8.11.0", "oneOf": [ { "type": "string" @@ -59134,7 +59037,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" }, "type": { @@ -59449,7 +59352,6 @@ ] }, "null_value": { - "x-available-since": "7.15.0", "type": "string" } }, @@ -59951,7 +59853,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" }, "type": { @@ -60240,7 +60142,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" } } @@ -60792,7 +60694,6 @@ }, "is_hidden": { "description": "If `true`, the alias is hidden.\nAll indices for the alias must have the same `is_hidden` value.", - "x-available-since": "7.16.0", "type": "boolean" } } @@ -61125,7 +61026,7 @@ }, "routes": { "description": "Detailed HTTP stats broken down by route", - "x-available-since": "8.12.0", + "x-state": "Added in 8.12.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/nodes._types:HttpRoute" @@ -61330,12 +61231,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-available-since": "8.15.0", + "x-state": "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-available-since": "8.15.0", + "x-state": "Added in 8.15.0", "type": "number" } }, @@ -62069,7 +61970,6 @@ }, "script_count": { "description": "The number of fields that declare a script.", - "x-available-since": "7.13.0", "type": "number" } }, @@ -62667,7 +62567,6 @@ "type": "number" }, "data_frozen": { - "x-available-since": "7.13.0", "type": "number" }, "data_hot": { @@ -63020,7 +62919,6 @@ "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-available-since": "7.16.0", "type": "number" }, "free_in_bytes": { @@ -64870,8 +64768,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", - "x-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "boolean" }, "time_series_metric": { @@ -64879,8 +64776,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-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -64888,8 +64784,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-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -64994,7 +64889,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -66998,7 +66892,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" }, "template": { @@ -68695,7 +68588,6 @@ "$ref": "#/components/schemas/_types:BulkStats" }, "shards": { - "x-available-since": "7.15.0", "type": "object", "additionalProperties": { "type": "object" @@ -70586,7 +70478,6 @@ }, "trace_redact": { "description": "If `true` then ingest metadata `_ingest._redact._is_redacted` is set to `true` if the document has been redacted", - "x-available-since": "8.16.0", "type": "boolean" } }, @@ -70981,7 +70872,6 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", - "x-available-since": "8.9.0", "x-beta": true, "type": "boolean" } @@ -74224,7 +74114,6 @@ "properties": { "annotations_enabled": { "description": "If true, enables calculation and storage of the model change annotations for each entity that is being analyzed.", - "x-available-since": "7.9.0", "type": "boolean" }, "enabled": { @@ -80839,7 +80728,6 @@ "$ref": "#/components/schemas/_types:TransportAddress" }, "external_id": { - "x-available-since": "8.3.0", "type": "string" }, "attributes": { @@ -81184,7 +81072,6 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", - "x-available-since": "8.14.0", "type": "string" }, "username": { @@ -81192,7 +81079,6 @@ }, "profile_uid": { "description": "The profile uid for the API key owner principal, if requested and if it exists", - "x-available-since": "8.14.0", "type": "string" }, "metadata": { @@ -81207,7 +81093,6 @@ }, "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-available-since": "8.5.0", "type": "array", "items": { "type": "object", @@ -81577,7 +81462,6 @@ "$ref": "#/components/schemas/_types:Name" }, "type": { - "x-available-since": "7.14.0", "type": "string" } }, @@ -81729,7 +81613,6 @@ } }, "global": { - "x-available-since": "8.0.0", "type": "object", "additionalProperties": { "type": "object", @@ -83157,7 +83040,6 @@ } }, "index_details": { - "x-available-since": "7.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/snapshot._types:IndexDetails" @@ -84356,7 +84238,6 @@ }, "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-available-since": "8.5.0", "type": "boolean" } } @@ -88525,7 +88406,6 @@ "$ref": "#/components/schemas/cluster.allocation_explain:UnassignedInformation" }, "note": { - "x-available-since": "7.14.0", "type": "string" } }, @@ -90810,7 +90690,6 @@ }, "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-available-since": "7.16.0", "type": "string" } }, @@ -91277,7 +91156,6 @@ "properties": { "accepted": { "description": "Equals `true` if the snapshot was accepted. Present when the request had `wait_for_completion` set to `false`", - "x-available-since": "7.15.0", "type": "boolean" }, "snapshot": { @@ -100992,7 +100870,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -102111,7 +101988,6 @@ }, "filter": { "description": "Query to filter the documents that can match. The kNN search will return the top\n`k` documents that also match this filter. The value can be a single query or a\nlist of queries. If `filter` isn't provided, all documents are allowed to match.", - "x-available-since": "8.2.0", "oneOf": [ { "$ref": "#/components/schemas/_types.query_dsl:QueryContainer" @@ -102765,7 +102641,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -103160,7 +103035,6 @@ }, "remote_indices": { "description": "A list of remote indices permissions entries.", - "x-available-since": "8.14.0", "type": "array", "items": { "$ref": "#/components/schemas/security._types:RemoteIndicesPrivileges" diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index c897d03852..6f542dc26c 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -72,7 +72,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" }, "delete": { "tags": [ @@ -106,7 +106,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_async_search/status/{id}": { @@ -142,7 +142,7 @@ } } }, - "x-available-since": "7.11.0" + "x-state": "Added in 7.11.0" } }, "/_async_search": { @@ -301,7 +301,7 @@ "$ref": "#/components/responses/async_search.submit#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/{index}/_async_search": { @@ -463,7 +463,7 @@ "$ref": "#/components/responses/async_search.submit#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_bulk": { @@ -712,7 +712,7 @@ "$ref": "#/components/responses/cat.component_templates#200" } }, - "x-available-since": "5.1.0" + "x-state": "Added in 5.1.0" } }, "/_cat/component_templates/{name}": { @@ -733,7 +733,7 @@ "$ref": "#/components/responses/cat.component_templates#200" } }, - "x-available-since": "5.1.0" + "x-state": "Added in 5.1.0" } }, "/_cat/count": { @@ -899,7 +899,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -935,7 +935,7 @@ "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/datafeeds": { @@ -965,7 +965,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -998,7 +998,7 @@ "$ref": "#/components/responses/cat.ml_datafeeds#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/anomaly_detectors": { @@ -1031,7 +1031,7 @@ "$ref": "#/components/responses/cat.ml_jobs#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1067,7 +1067,7 @@ "$ref": "#/components/responses/cat.ml_jobs#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/trained_models": { @@ -1103,7 +1103,7 @@ "$ref": "#/components/responses/cat.ml_trained_models#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/ml/trained_models/{model_id}": { @@ -1142,7 +1142,7 @@ "$ref": "#/components/responses/cat.ml_trained_models#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/transforms": { @@ -1178,7 +1178,7 @@ "$ref": "#/components/responses/cat.transforms#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_cat/transforms/{transform_id}": { @@ -1217,7 +1217,7 @@ "$ref": "#/components/responses/cat.transforms#200" } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_search/scroll": { @@ -1417,7 +1417,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_component_template/{name}": { @@ -1450,7 +1450,7 @@ "$ref": "#/components/responses/cluster.get_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "put": { "tags": [ @@ -1478,7 +1478,7 @@ "$ref": "#/components/responses/cluster.put_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "post": { "tags": [ @@ -1506,7 +1506,7 @@ "$ref": "#/components/responses/cluster.put_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "delete": { "tags": [ @@ -1560,7 +1560,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "head": { "tags": [ @@ -1610,7 +1610,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_component_template": { @@ -1640,7 +1640,7 @@ "$ref": "#/components/responses/cluster.get_component_template#200" } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" } }, "/_info/{target}": { @@ -1699,7 +1699,7 @@ } } }, - "x-available-since": "8.9.0" + "x-state": "Added in 8.9.0" } }, "/_connector/{connector_id}/_check_in": { @@ -1742,8 +1742,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}": { @@ -1778,8 +1777,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "put": { "tags": [ @@ -1800,8 +1798,7 @@ "$ref": "#/components/responses/connector.put#200" } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "delete": { "tags": [ @@ -1844,8 +1841,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector": { @@ -1944,8 +1940,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "put": { "tags": [ @@ -1961,8 +1956,7 @@ "$ref": "#/components/responses/connector.put#200" } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "post": { "tags": [ @@ -2023,8 +2017,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -2067,8 +2060,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -2103,8 +2095,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "delete": { "tags": [ @@ -2137,8 +2128,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/_sync_job": { @@ -2237,8 +2227,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true }, "post": { "tags": [ @@ -2290,8 +2279,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -2334,8 +2322,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_api_key_id": { @@ -2396,8 +2383,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_configuration": { @@ -2461,8 +2447,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_error": { @@ -2530,8 +2515,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_filtering": { @@ -2601,8 +2585,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -2663,8 +2646,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_connector/{connector_id}/_index_name": { @@ -2732,8 +2714,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_name": { @@ -2794,8 +2775,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_native": { @@ -2856,8 +2836,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_pipeline": { @@ -2918,8 +2897,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_scheduling": { @@ -2980,8 +2958,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_service_type": { @@ -3042,8 +3019,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.12.0" + "x-beta": true } }, "/_connector/{connector_id}/_status": { @@ -3104,8 +3080,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.12.0" + "x-state": "Technical preview" } }, "/_count": { @@ -3399,7 +3374,7 @@ "$ref": "#/components/responses/create#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -3445,7 +3420,7 @@ "$ref": "#/components/responses/create#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{index}/_doc/{id}": { @@ -4376,7 +4351,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_scripts/{id}": { @@ -4564,7 +4539,7 @@ "$ref": "#/components/responses/enrich.get_policy#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "put": { "tags": [ @@ -4619,7 +4594,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "delete": { "tags": [ @@ -4653,7 +4628,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -4706,7 +4681,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/policy": { @@ -4722,7 +4697,7 @@ "$ref": "#/components/responses/enrich.get_policy#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_enrich/_stats": { @@ -4757,7 +4732,6 @@ }, "cache_stats": { "description": "Objects containing information about the enrich cache stats on each ingest node.", - "x-available-since": "7.16.0", "type": "array", "items": { "$ref": "#/components/schemas/enrich.stats:CacheStats" @@ -4773,7 +4747,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_eql/search/{id}": { @@ -4828,7 +4802,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -4862,7 +4836,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_eql/search/status/{id}": { @@ -4925,7 +4899,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{index}/_eql/search": { @@ -4966,7 +4940,7 @@ "$ref": "#/components/responses/eql.search#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "post": { "tags": [ @@ -5005,7 +4979,7 @@ "$ref": "#/components/responses/eql.search#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_query": { @@ -5111,8 +5085,7 @@ } } } - }, - "x-available-since": "8.11.0" + } } }, "/{index}/_source/{id}": { @@ -5388,7 +5361,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_explain/{id}": { @@ -5555,7 +5528,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -5598,7 +5571,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_field_caps": { @@ -5646,7 +5619,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -5692,7 +5665,7 @@ "$ref": "#/components/responses/field_caps#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/{index}/_graph/explore": { @@ -5918,7 +5891,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_analyze": { @@ -6418,7 +6391,7 @@ "$ref": "#/components/responses/indices.get_data_stream#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "put": { "tags": [ @@ -6472,7 +6445,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -6526,7 +6499,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{index}/_alias/{name}": { @@ -6847,7 +6820,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" }, "put": { "tags": [ @@ -6928,7 +6901,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" }, "delete": { "tags": [ @@ -6992,7 +6965,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" } }, "/_index_template/{name}": { @@ -7025,7 +6998,7 @@ "$ref": "#/components/responses/indices.get_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "put": { "tags": [ @@ -7056,7 +7029,7 @@ "$ref": "#/components/responses/indices.put_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "post": { "tags": [ @@ -7087,7 +7060,7 @@ "$ref": "#/components/responses/indices.put_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" }, "delete": { "tags": [ @@ -7141,7 +7114,7 @@ } } }, - "x-available-since": "7.8.0" + "x-state": "Added in 7.8.0" }, "head": { "tags": [ @@ -7308,7 +7281,7 @@ } } }, - "x-available-since": "8.11.0" + "x-state": "Added in 8.11.0" } }, "/_alias": { @@ -7399,7 +7372,7 @@ "$ref": "#/components/responses/indices.get_data_stream#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_index_template": { @@ -7429,7 +7402,7 @@ "$ref": "#/components/responses/indices.get_index_template#200" } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_mapping": { @@ -7875,7 +7848,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_data_stream/_modify": { @@ -7920,7 +7893,7 @@ } } }, - "x-available-since": "7.16.0" + "x-state": "Added in 7.16.0" } }, "/_template/{name}": { @@ -8185,7 +8158,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/{alias}/_rollover": { @@ -8221,7 +8194,7 @@ "$ref": "#/components/responses/indices.rollover#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{alias}/_rollover/{new_index}": { @@ -8260,7 +8233,7 @@ "$ref": "#/components/responses/indices.rollover#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_index_template/_simulate_index/{name}": { @@ -8330,7 +8303,7 @@ } } }, - "x-available-since": "7.9.0" + "x-state": "Added in 7.9.0" } }, "/_index_template/_simulate": { @@ -8455,7 +8428,7 @@ } } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_validate/query": { @@ -8512,7 +8485,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -8567,7 +8540,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_validate/query": { @@ -8627,7 +8600,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -8685,7 +8658,7 @@ "$ref": "#/components/responses/indices.validate_query#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_inference/{inference_id}": { @@ -8705,8 +8678,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -8727,8 +8699,7 @@ "$ref": "#/components/responses/inference.put#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -8752,8 +8723,7 @@ "$ref": "#/components/responses/inference.inference#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -8777,8 +8747,7 @@ "$ref": "#/components/responses/inference.delete#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/_inference/{task_type}/{inference_id}": { @@ -8801,8 +8770,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -8826,8 +8794,7 @@ "$ref": "#/components/responses/inference.put#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -8854,8 +8821,7 @@ "$ref": "#/components/responses/inference.inference#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -8882,8 +8848,7 @@ "$ref": "#/components/responses/inference.delete#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/_inference": { @@ -8898,8 +8863,7 @@ "$ref": "#/components/responses/inference.get#200" } }, - "x-technical-preview": true, - "x-available-since": "8.11.0" + "x-state": "Technical preview" } }, "/": { @@ -8988,7 +8952,7 @@ "$ref": "#/components/responses/ingest.get_pipeline#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "put": { "tags": [ @@ -9092,7 +9056,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "delete": { "tags": [ @@ -9145,7 +9109,7 @@ } } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/pipeline": { @@ -9169,7 +9133,7 @@ "$ref": "#/components/responses/ingest.get_pipeline#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/processor/grok": { @@ -9203,7 +9167,7 @@ } } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -9226,7 +9190,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -9247,7 +9211,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_ingest/pipeline/{id}/_simulate": { @@ -9273,7 +9237,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -9297,7 +9261,7 @@ "$ref": "#/components/responses/ingest.simulate#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_license": { @@ -9369,7 +9333,7 @@ "$ref": "#/components/responses/logstash.get_pipeline#200" } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" }, "put": { "tags": [ @@ -9408,7 +9372,7 @@ } } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" }, "delete": { "tags": [ @@ -9437,7 +9401,7 @@ } } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" } }, "/_logstash/pipeline": { @@ -9452,7 +9416,7 @@ "$ref": "#/components/responses/logstash.get_pipeline#200" } }, - "x-available-since": "7.12.0" + "x-state": "Added in 7.12.0" } }, "/_mget": { @@ -9496,7 +9460,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -9538,7 +9502,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_mget": { @@ -9585,7 +9549,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -9630,7 +9594,7 @@ "$ref": "#/components/responses/mget#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -9726,7 +9690,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -9755,7 +9719,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "put": { "tags": [ @@ -9826,7 +9790,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -9853,7 +9817,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "delete": { "tags": [ @@ -9887,7 +9851,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -9933,7 +9897,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -9995,7 +9959,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "delete": { "tags": [ @@ -10055,7 +10019,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -10088,7 +10052,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "put": { "tags": [ @@ -10225,7 +10189,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" }, "delete": { "tags": [ @@ -10278,7 +10242,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -10305,7 +10269,7 @@ "$ref": "#/components/responses/ml.get_datafeeds#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -10508,7 +10472,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -10551,7 +10515,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -10578,7 +10542,7 @@ "$ref": "#/components/responses/ml.get_filters#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -10654,7 +10618,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -10688,7 +10652,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -10715,7 +10679,7 @@ "$ref": "#/components/responses/ml.get_jobs#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" }, "put": { "tags": [ @@ -10898,7 +10862,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "delete": { "tags": [ @@ -10962,7 +10926,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -11003,7 +10967,7 @@ "$ref": "#/components/responses/ml.get_trained_models#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" }, "put": { "tags": [ @@ -11111,7 +11075,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" }, "delete": { "tags": [ @@ -11155,7 +11119,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -11212,7 +11176,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "delete": { "tags": [ @@ -11257,7 +11221,7 @@ } } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -11317,7 +11281,7 @@ } } }, - "x-available-since": "7.7.0" + "x-state": "Added in 7.7.0" } }, "/_ml/data_frame/_evaluate": { @@ -11376,7 +11340,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -11501,7 +11465,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -11601,7 +11565,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -11667,7 +11631,7 @@ } } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/calendars": { @@ -11693,7 +11657,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -11717,7 +11681,7 @@ "$ref": "#/components/responses/ml.get_calendars#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_ml/data_frame/analytics": { @@ -11747,7 +11711,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -11776,7 +11740,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -11808,7 +11772,7 @@ "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -11832,7 +11796,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -11853,7 +11817,7 @@ "$ref": "#/components/responses/ml.get_datafeed_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/datafeeds": { @@ -11877,7 +11841,7 @@ "$ref": "#/components/responses/ml.get_datafeeds#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/filters": { @@ -11901,7 +11865,7 @@ "$ref": "#/components/responses/ml.get_filters#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -11921,7 +11885,7 @@ "$ref": "#/components/responses/ml.get_job_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -11944,7 +11908,7 @@ "$ref": "#/components/responses/ml.get_job_stats#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors": { @@ -11968,7 +11932,7 @@ "$ref": "#/components/responses/ml.get_jobs#200" } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -12013,7 +11977,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" }, "post": { "tags": [ @@ -12056,7 +12020,7 @@ "$ref": "#/components/responses/ml.get_overall_buckets#200" } }, - "x-available-since": "6.1.0" + "x-state": "Added in 6.1.0" } }, "/_ml/trained_models": { @@ -12094,7 +12058,7 @@ "$ref": "#/components/responses/ml.get_trained_models#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -12124,7 +12088,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/_stats": { @@ -12151,7 +12115,7 @@ "$ref": "#/components/responses/ml.get_trained_models_stats#200" } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -12177,7 +12141,7 @@ "$ref": "#/components/responses/ml.infer_trained_model#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" } }, "/_ml/trained_models/{model_id}/deployment/_infer": { @@ -12203,7 +12167,7 @@ "$ref": "#/components/responses/ml.infer_trained_model#200" } }, - "x-available-since": "8.3.0" + "x-state": "Added in 8.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -12275,7 +12239,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -12294,7 +12258,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "post": { "tags": [ @@ -12311,7 +12275,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -12335,7 +12299,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" }, "post": { "tags": [ @@ -12357,7 +12321,7 @@ "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } }, - "x-available-since": "7.13.0" + "x-state": "Added in 7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -12387,7 +12351,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -12415,7 +12379,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -12442,7 +12406,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" }, "post": { "tags": [ @@ -12467,7 +12431,7 @@ "$ref": "#/components/responses/ml.preview_datafeed#200" } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -12542,7 +12506,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -12581,7 +12545,6 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", - "x-available-since": "8.2.0", "type": "array", "items": { "type": "string" @@ -12589,7 +12552,6 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", - "x-available-since": "8.9.0", "type": "array", "items": { "type": "number" @@ -12616,7 +12578,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -12672,7 +12634,7 @@ } } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -12730,7 +12692,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -12829,7 +12791,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -12943,7 +12905,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -13017,7 +12979,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -13113,7 +13075,7 @@ } } }, - "x-available-since": "5.4.0" + "x-state": "Added in 5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -13176,7 +13138,7 @@ } } }, - "x-available-since": "8.0.0" + "x-state": "Added in 8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -13294,7 +13256,7 @@ } } }, - "x-available-since": "7.3.0" + "x-state": "Added in 7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -13500,7 +13462,7 @@ } } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -13585,7 +13547,7 @@ } } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -13792,7 +13754,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -13861,7 +13823,7 @@ } }, "x-beta": true, - "x-available-since": "8.6.0" + "x-state": "Added in 8.6.0" } }, "/_msearch": { @@ -13920,7 +13882,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -13977,7 +13939,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/{index}/_msearch": { @@ -14039,7 +14001,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" }, "post": { "tags": [ @@ -14099,7 +14061,7 @@ "$ref": "#/components/responses/msearch#200" } }, - "x-available-since": "1.3.0" + "x-state": "Added in 1.3.0" } }, "/_msearch/template": { @@ -14134,7 +14096,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -14167,7 +14129,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/{index}/_msearch/template": { @@ -14205,7 +14167,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" }, "post": { "tags": [ @@ -14241,7 +14203,7 @@ "$ref": "#/components/responses/msearch_template#200" } }, - "x-available-since": "5.0.0" + "x-state": "Added in 5.0.0" } }, "/_mtermvectors": { @@ -14576,7 +14538,7 @@ } } }, - "x-available-since": "7.10.0" + "x-state": "Added in 7.10.0" } }, "/_scripts/{id}/{context}": { @@ -14684,7 +14646,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "put": { "tags": [ @@ -14775,7 +14737,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" }, "delete": { "tags": [ @@ -14819,7 +14781,7 @@ } } }, - "x-available-since": "8.15.0" + "x-state": "Added in 8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -14854,7 +14816,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -14923,7 +14885,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -14956,7 +14918,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_query_rules": { @@ -15015,7 +14977,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_rank_eval": { @@ -15047,7 +15009,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -15077,7 +15039,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/{index}/_rank_eval": { @@ -15112,7 +15074,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" }, "post": { "tags": [ @@ -15145,7 +15107,7 @@ "$ref": "#/components/responses/rank_eval#200" } }, - "x-available-since": "6.2.0" + "x-state": "Added in 6.2.0" } }, "/_reindex": { @@ -15338,7 +15300,7 @@ } } }, - "x-available-since": "2.3.0" + "x-state": "Added in 2.3.0" } }, "/_render/template": { @@ -15431,8 +15393,7 @@ "$ref": "#/components/responses/scripts_painless_execute#200" } }, - "x-technical-preview": true, - "x-available-since": "6.3.0" + "x-state": "Technical preview" }, "post": { "tags": [ @@ -15449,8 +15410,7 @@ "$ref": "#/components/responses/scripts_painless_execute#200" } }, - "x-technical-preview": true, - "x-available-since": "6.3.0" + "x-state": "Technical preview" } }, "/_search": { @@ -16095,8 +16055,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "put": { "tags": [ @@ -16157,8 +16116,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "delete": { "tags": [ @@ -16192,8 +16150,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/_application/analytics/{name}": { @@ -16213,8 +16170,7 @@ "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" }, "put": { "tags": [ @@ -16247,8 +16203,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" }, "delete": { "tags": [ @@ -16282,8 +16237,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" } }, "/_application/analytics": { @@ -16298,8 +16252,7 @@ "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } }, - "x-technical-preview": true, - "x-available-since": "8.8.0" + "x-state": "Technical preview" } }, "/_application/search_application": { @@ -16368,8 +16321,7 @@ } } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/_application/search_application/{name}/_search": { @@ -16396,8 +16348,7 @@ "$ref": "#/components/responses/search_application.search#200" } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true }, "post": { "tags": [ @@ -16422,8 +16373,7 @@ "$ref": "#/components/responses/search_application.search#200" } }, - "x-beta": true, - "x-available-since": "8.8.0" + "x-beta": true } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -16480,7 +16430,7 @@ "$ref": "#/components/responses/search_mvt#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" }, "post": { "tags": [ @@ -16535,7 +16485,7 @@ "$ref": "#/components/responses/search_mvt#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_search/template": { @@ -16594,7 +16544,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" }, "post": { "tags": [ @@ -16651,7 +16601,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" } }, "/{index}/_search/template": { @@ -16713,7 +16663,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" }, "post": { "tags": [ @@ -16773,7 +16723,7 @@ "$ref": "#/components/responses/search_template#200" } }, - "x-available-since": "2.0.0" + "x-state": "Added in 2.0.0" } }, "/_security/_authenticate": { @@ -16859,7 +16809,7 @@ } } }, - "x-available-since": "5.5.0" + "x-state": "Added in 5.5.0" } }, "/_security/api_key": { @@ -16975,7 +16925,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "put": { "tags": [ @@ -16997,7 +16947,7 @@ "$ref": "#/components/responses/security.create_api_key#200" } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "post": { "tags": [ @@ -17019,7 +16969,7 @@ "$ref": "#/components/responses/security.create_api_key#200" } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" }, "delete": { "tags": [ @@ -17104,7 +17054,7 @@ } } }, - "x-available-since": "6.7.0" + "x-state": "Added in 6.7.0" } }, "/_security/user/_has_privileges": { @@ -17123,7 +17073,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "post": { "tags": [ @@ -17140,7 +17090,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/user/{user}/_has_privileges": { @@ -17164,7 +17114,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" }, "post": { "tags": [ @@ -17186,7 +17136,7 @@ "$ref": "#/components/responses/security.has_privileges#200" } }, - "x-available-since": "6.4.0" + "x-state": "Added in 6.4.0" } }, "/_security/_query/api_key": { @@ -17216,7 +17166,7 @@ "$ref": "#/components/responses/security.query_api_keys#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" }, "post": { "tags": [ @@ -17244,7 +17194,7 @@ "$ref": "#/components/responses/security.query_api_keys#200" } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_security/api_key/{id}": { @@ -17316,7 +17266,7 @@ } } }, - "x-available-since": "8.4.0" + "x-state": "Added in 8.4.0" } }, "/_sql/close": { @@ -17365,7 +17315,7 @@ } } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_sql/async/delete/{id}": { @@ -17401,7 +17351,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql/async/{id}": { @@ -17513,7 +17463,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql/async/status/{id}": { @@ -17578,7 +17528,7 @@ } } }, - "x-available-since": "7.15.0" + "x-state": "Added in 7.15.0" } }, "/_sql": { @@ -17601,7 +17551,7 @@ "$ref": "#/components/responses/sql.query#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -17622,7 +17572,7 @@ "$ref": "#/components/responses/sql.query#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_sql/translate": { @@ -17640,7 +17590,7 @@ "$ref": "#/components/responses/sql.translate#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" }, "post": { "tags": [ @@ -17656,7 +17606,7 @@ "$ref": "#/components/responses/sql.translate#200" } }, - "x-available-since": "6.3.0" + "x-state": "Added in 6.3.0" } }, "/_synonyms/{id}": { @@ -17726,7 +17676,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -17800,7 +17750,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -17833,7 +17783,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -17879,7 +17829,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "put": { "tags": [ @@ -17941,7 +17891,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" }, "delete": { "tags": [ @@ -17985,7 +17935,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_synonyms": { @@ -18044,7 +17994,7 @@ } } }, - "x-available-since": "8.10.0" + "x-state": "Added in 8.10.0" } }, "/_tasks/{task_id}": { @@ -18118,8 +18068,7 @@ } } }, - "x-technical-preview": true, - "x-available-since": "5.0.0" + "x-state": "Technical preview" } }, "/{index}/_terms_enum": { @@ -18143,7 +18092,7 @@ "$ref": "#/components/responses/terms_enum#200" } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" }, "post": { "tags": [ @@ -18165,7 +18114,7 @@ "$ref": "#/components/responses/terms_enum#200" } }, - "x-available-since": "7.14.0" + "x-state": "Added in 7.14.0" } }, "/{index}/_termvectors/{id}": { @@ -18424,7 +18373,7 @@ "$ref": "#/components/responses/transform.get_transform#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" }, "put": { "tags": [ @@ -18525,7 +18474,7 @@ } } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "delete": { "tags": [ @@ -18589,7 +18538,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform": { @@ -18619,7 +18568,7 @@ "$ref": "#/components/responses/transform.get_transform#200" } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -18710,7 +18659,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -18737,7 +18686,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "post": { "tags": [ @@ -18762,7 +18711,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/_transform/_preview": { @@ -18786,7 +18735,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" }, "post": { "tags": [ @@ -18808,7 +18757,7 @@ "$ref": "#/components/responses/transform.preview_transform#200" } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/_transform/{transform_id}/_reset": { @@ -18854,7 +18803,7 @@ } } }, - "x-available-since": "8.1.0" + "x-state": "Added in 8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -18900,7 +18849,7 @@ } } }, - "x-available-since": "8.7.0" + "x-state": "Added in 8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -18956,7 +18905,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -19042,7 +18991,7 @@ } } }, - "x-available-since": "7.5.0" + "x-state": "Added in 7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -19197,7 +19146,7 @@ } } }, - "x-available-since": "7.2.0" + "x-state": "Added in 7.2.0" } }, "/{index}/_update/{id}": { @@ -19833,7 +19782,7 @@ } } }, - "x-available-since": "2.4.0" + "x-state": "Added in 2.4.0" } } }, @@ -25616,7 +25565,6 @@ "url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-text-expansion-query.html" }, "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-available-since": "8.8.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl:TextExpansionQuery" @@ -25627,7 +25575,6 @@ "weighted_tokens": { "deprecated": true, "description": "Supports returning text_expansion query results by sending in precomputed tokens with the query.", - "x-available-since": "8.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/_types.query_dsl:WeightedTokensQuery" @@ -28133,7 +28080,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" } }, @@ -28672,7 +28618,6 @@ "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-available-since": "7.10.0", "type": "boolean" }, "flags": { @@ -29208,8 +29153,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-technical-preview": true, - "x-available-since": "8.15.0", + "x-state": "Technical preview", "type": "boolean" }, "pruning_config": { @@ -29271,7 +29215,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" } }, @@ -29384,7 +29327,6 @@ "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-available-since": "7.10.0", "type": "boolean" }, "rewrite": { @@ -33143,7 +33085,7 @@ }, "dataset.size": { "description": "total size of dataset (including the cache for partially mounted indices)", - "x-available-since": "8.11.0", + "x-state": "Added in 8.11.0", "oneOf": [ { "type": "string" @@ -34493,7 +34435,6 @@ "type": "string" }, "type": { - "x-available-since": "8.0.0", "type": "string" } } @@ -40875,7 +40816,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" }, "type": { @@ -41190,7 +41131,6 @@ ] }, "null_value": { - "x-available-since": "7.15.0", "type": "string" } }, @@ -41692,7 +41632,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" }, "type": { @@ -41981,7 +41921,7 @@ }, "time_series_dimension": { "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", - "x-technical-preview": true, + "x-state": "Technical preview", "type": "boolean" } } @@ -42533,7 +42473,6 @@ }, "is_hidden": { "description": "If `true`, the alias is hidden.\nAll indices for the alias must have the same `is_hidden` value.", - "x-available-since": "7.16.0", "type": "boolean" } } @@ -42765,12 +42704,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-available-since": "8.15.0", + "x-state": "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-available-since": "8.15.0", + "x-state": "Added in 8.15.0", "type": "number" } }, @@ -44458,8 +44397,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", - "x-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "boolean" }, "time_series_metric": { @@ -44467,8 +44405,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-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -44476,8 +44413,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-technical-preview": true, - "x-available-since": "8.0.0", + "x-state": "Technical preview", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -45087,7 +45023,6 @@ }, "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-available-since": "7.10.0", "type": "boolean" }, "template": { @@ -47049,7 +46984,6 @@ }, "trace_redact": { "description": "If `true` then ingest metadata `_ingest._redact._is_redacted` is set to `true` if the document has been redacted", - "x-available-since": "8.16.0", "type": "boolean" } }, @@ -47444,7 +47378,6 @@ }, "extract_device_type": { "description": "Extracts device type from the user agent string on a best-effort basis.", - "x-available-since": "8.9.0", "x-beta": true, "type": "boolean" } @@ -50132,7 +50065,6 @@ "properties": { "annotations_enabled": { "description": "If true, enables calculation and storage of the model change annotations for each entity that is being analyzed.", - "x-available-since": "7.9.0", "type": "boolean" }, "enabled": { @@ -52132,7 +52064,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -53438,7 +53369,6 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", - "x-available-since": "8.14.0", "type": "string" }, "username": { @@ -53446,7 +53376,6 @@ }, "profile_uid": { "description": "The profile uid for the API key owner principal, if requested and if it exists", - "x-available-since": "8.14.0", "type": "string" }, "metadata": { @@ -53461,7 +53390,6 @@ }, "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-available-since": "8.5.0", "type": "array", "items": { "type": "object", @@ -53740,7 +53668,6 @@ "$ref": "#/components/schemas/_types:Name" }, "type": { - "x-available-since": "7.14.0", "type": "string" } }, @@ -54360,7 +54287,6 @@ }, "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-available-since": "8.5.0", "type": "boolean" } } @@ -56047,7 +55973,6 @@ }, "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-available-since": "7.16.0", "type": "string" } }, @@ -61571,7 +61496,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -62750,7 +62674,6 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", - "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch"