diff --git a/compiler-rs/clients_schema/src/lib.rs b/compiler-rs/clients_schema/src/lib.rs index 0227760c65..7558379212 100644 --- a/compiler-rs/clients_schema/src/lib.rs +++ b/compiler-rs/clients_schema/src/lib.rs @@ -50,7 +50,6 @@ pub trait Documented { fn doc_url(&self) -> Option<&str>; fn doc_id(&self) -> Option<&str>; fn description(&self) -> Option<&str>; - fn since(&self) -> Option<&str>; } #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] @@ -252,9 +251,9 @@ pub enum Flavor { #[derive(Debug, Clone, Serialize, Deserialize)] #[serde(rename_all = "camelCase")] pub struct Availability { - since: Option, - stability: Option, - visibility: Option, + pub since: Option, + pub stability: Option, + pub visibility: Option, } /// The availability of an @@ -312,9 +311,6 @@ pub struct Property { #[serde(skip_serializing_if = "Option::is_none")] pub doc_id: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub since: Option, - #[serde(skip_serializing_if = "Option::is_none")] pub server_default: Option, @@ -324,9 +320,6 @@ pub struct Property { #[serde(skip_serializing_if = "Option::is_none")] pub availability: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub stability: Option, - /// If specified takes precedence over `name` when generating code. `name` is always the value /// to be sent over the wire #[serde(skip_serializing_if = "Option::is_none")] @@ -357,10 +350,6 @@ impl Documented for Property { fn description(&self) -> Option<&str> { self.description.as_deref() } - - fn since(&self) -> Option<&str> { - self.since.as_deref() - } } #[derive(Debug, Clone, Serialize, Deserialize)] @@ -536,10 +525,6 @@ impl Documented for BaseType { fn description(&self) -> Option<&str> { self.description.as_deref() } - - fn since(&self) -> Option<&str> { - None - } } trait WithBaseType { @@ -558,10 +543,6 @@ impl Documented for T { fn description(&self) -> Option<&str> { self.base().description() } - - fn since(&self) -> Option<&str> { - self.base().since() - } } /// An interface type @@ -843,20 +824,6 @@ pub struct Endpoint { pub urls: Vec, - /// The version when this endpoint reached its current stability level. - /// Missing data means "forever", i.e. before any of the target client versions produced from this spec. - #[serde(skip_serializing_if = "Option::is_none")] - pub since: Option, - - #[serde(skip_serializing_if = "Option::is_none")] - pub stability: Option, - - #[serde(skip_serializing_if = "Option::is_none")] - pub visibility: Option, - - #[serde(skip_serializing_if = "Option::is_none")] - pub feature_flag: Option, - #[serde(default, skip_serializing_if = "Vec::is_empty")] pub request_media_type: Vec, @@ -879,10 +846,6 @@ impl Documented for Endpoint { fn description(&self) -> Option<&str> { Some(self.description.as_str()) } - - fn since(&self) -> Option<&str> { - self.since.as_deref() - } } #[derive(Debug, Clone, Serialize, Deserialize)] diff --git a/compiler-rs/clients_schema_to_openapi/src/lib.rs b/compiler-rs/clients_schema_to_openapi/src/lib.rs index 808d62329b..40861aa403 100644 --- a/compiler-rs/clients_schema_to_openapi/src/lib.rs +++ b/compiler-rs/clients_schema_to_openapi/src/lib.rs @@ -23,6 +23,7 @@ mod utils; use std::collections::HashSet; use std::io::{BufWriter, Write}; use std::path::Path; +use indexmap::IndexMap; use clients_schema::{Availabilities, Endpoint, IndexedModel}; use openapiv3::{Components, OpenAPI}; @@ -147,3 +148,19 @@ fn info(model: &IndexedModel) -> openapiv3::Info { extensions: Default::default(), } } + +pub fn availability_as_extension(availabilities: &Option) -> IndexMap { + let mut result = IndexMap::new(); + + if let Some(avails) = availabilities { + // We may have several availabilities, but since generally exists only on stateful (stack) + for (_, availability) in avails { + if let Some(since) = &availability.since { + result.insert("x-available-since".to_string(), serde_json::Value::String(since.clone())); + break; + } + } + } + + result +} diff --git a/compiler-rs/clients_schema_to_openapi/src/paths.rs b/compiler-rs/clients_schema_to_openapi/src/paths.rs index d94c0bdc9d..111e76954e 100644 --- a/compiler-rs/clients_schema_to_openapi/src/paths.rs +++ b/compiler-rs/clients_schema_to_openapi/src/paths.rs @@ -211,9 +211,10 @@ pub fn add_endpoint( deprecated: endpoint.deprecation.is_some(), security: None, servers: vec![], - extensions: Default::default(), // FIXME: translate availability? + extensions: crate::availability_as_extension(&endpoint.availability), }; + let mut operation_path = url_template.path.clone(); // Disabled -- OpenAPI path templates do not contain the query string diff --git a/compiler-rs/clients_schema_to_openapi/src/schemas.rs b/compiler-rs/clients_schema_to_openapi/src/schemas.rs index 7c5a9d09a9..3bf0b2c8a8 100644 --- a/compiler-rs/clients_schema_to_openapi/src/schemas.rs +++ b/compiler-rs/clients_schema_to_openapi/src/schemas.rs @@ -472,12 +472,11 @@ impl<'a> TypesAndComponents<'a> { data.external_docs = self.convert_external_docs(prop); data.deprecated = prop.deprecation.is_some(); data.description = prop.description.clone(); + data.extensions = crate::availability_as_extension(&prop.availability); // TODO: prop.aliases as extensions // TODO: prop.server_default as extension - // TODO: prop.availability as extension // TODO: prop.doc_id as extension (new representation of since and stability) // TODO: prop.es_quirk as extension? // TODO: prop.codegen_name as extension? - // TODO: prop.deprecation as extension } } diff --git a/compiler-rs/clients_schema_to_openapi/src/utils.rs b/compiler-rs/clients_schema_to_openapi/src/utils.rs index d4b78a8be2..4c3d0d9702 100644 --- a/compiler-rs/clients_schema_to_openapi/src/utils.rs +++ b/compiler-rs/clients_schema_to_openapi/src/utils.rs @@ -86,13 +86,6 @@ pub trait IntoSchema { schema } - fn into_schema_with_data_fn(self, f: fn(&mut SchemaData) -> ()) -> Schema - where Self: Sized { - let mut schema = self.into_schema(); - f(&mut schema.schema_data); - schema - } - fn into_schema(self) -> Schema; } 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 ca5c0407d7..bac9bafdfc 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 da61c6278e..06c4e013b2 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -74,7 +74,8 @@ } } } - } + }, + "x-available-since": "7.7.0" }, "delete": { "tags": [ @@ -110,7 +111,8 @@ } } } - } + }, + "x-available-since": "7.7.0" } }, "/_async_search/status/{id}": { @@ -148,7 +150,8 @@ } } } - } + }, + "x-available-since": "7.11.0" } }, "/_async_search": { @@ -309,7 +312,8 @@ "200": { "$ref": "#/components/responses/async_search.submit#200" } - } + }, + "x-available-since": "7.7.0" } }, "/{index}/_async_search": { @@ -473,7 +477,8 @@ "200": { "$ref": "#/components/responses/async_search.submit#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_autoscaling/policy/{name}": { @@ -511,7 +516,8 @@ } } } - } + }, + "x-available-since": "7.11.0" }, "put": { "tags": [ @@ -557,7 +563,8 @@ } } } - } + }, + "x-available-since": "7.11.0" }, "delete": { "tags": [ @@ -593,7 +600,8 @@ } } } - } + }, + "x-available-since": "7.11.0" } }, "/_autoscaling/capacity": { @@ -629,7 +637,8 @@ } } } - } + }, + "x-available-since": "7.11.0" } }, "/_bulk": { @@ -947,7 +956,8 @@ "200": { "$ref": "#/components/responses/cat.component_templates#200" } - } + }, + "x-available-since": "5.1.0" } }, "/_cat/component_templates/{name}": { @@ -970,7 +980,8 @@ "200": { "$ref": "#/components/responses/cat.component_templates#200" } - } + }, + "x-available-since": "5.1.0" } }, "/_cat/count": { @@ -1285,7 +1296,8 @@ "200": { "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -1323,7 +1335,8 @@ "200": { "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/datafeeds": { @@ -1355,7 +1368,8 @@ "200": { "$ref": "#/components/responses/cat.ml_datafeeds#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1390,7 +1404,8 @@ "200": { "$ref": "#/components/responses/cat.ml_datafeeds#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/anomaly_detectors": { @@ -1425,7 +1440,8 @@ "200": { "$ref": "#/components/responses/cat.ml_jobs#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1463,7 +1479,8 @@ "200": { "$ref": "#/components/responses/cat.ml_jobs#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/trained_models": { @@ -1501,7 +1518,8 @@ "200": { "$ref": "#/components/responses/cat.ml_trained_models#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/trained_models/{model_id}": { @@ -1542,7 +1560,8 @@ "200": { "$ref": "#/components/responses/cat.ml_trained_models#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/nodeattrs": { @@ -1782,7 +1801,8 @@ } } } - } + }, + "x-available-since": "2.1.0" } }, "/_cat/segments": { @@ -1903,7 +1923,8 @@ "200": { "$ref": "#/components/responses/cat.snapshots#200" } - } + }, + "x-available-since": "2.1.0" } }, "/_cat/snapshots/{repository}": { @@ -1929,7 +1950,8 @@ "200": { "$ref": "#/components/responses/cat.snapshots#200" } - } + }, + "x-available-since": "2.1.0" } }, "/_cat/tasks": { @@ -2005,7 +2027,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_cat/templates": { @@ -2023,7 +2046,8 @@ "200": { "$ref": "#/components/responses/cat.templates#200" } - } + }, + "x-available-since": "5.2.0" } }, "/_cat/templates/{name}": { @@ -2046,7 +2070,8 @@ "200": { "$ref": "#/components/responses/cat.templates#200" } - } + }, + "x-available-since": "5.2.0" } }, "/_cat/thread_pool": { @@ -2133,7 +2158,8 @@ "200": { "$ref": "#/components/responses/cat.transforms#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/transforms/{transform_id}": { @@ -2174,7 +2200,8 @@ "200": { "$ref": "#/components/responses/cat.transforms#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_ccr/auto_follow/{name}": { @@ -2197,7 +2224,8 @@ "200": { "$ref": "#/components/responses/ccr.get_auto_follow_pattern#200" } - } + }, + "x-available-since": "6.5.0" }, "put": { "tags": [ @@ -2306,7 +2334,8 @@ } } } - } + }, + "x-available-since": "6.5.0" }, "delete": { "tags": [ @@ -2341,7 +2370,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/{index}/_ccr/follow": { @@ -2452,7 +2482,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/{index}/_ccr/info": { @@ -2500,7 +2531,8 @@ } } } - } + }, + "x-available-since": "6.7.0" } }, "/{index}/_ccr/stats": { @@ -2548,7 +2580,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/{index}/_ccr/forget_follower": { @@ -2617,7 +2650,8 @@ } } } - } + }, + "x-available-since": "6.7.0" } }, "/_ccr/auto_follow": { @@ -2635,7 +2669,8 @@ "200": { "$ref": "#/components/responses/ccr.get_auto_follow_pattern#200" } - } + }, + "x-available-since": "6.5.0" } }, "/_ccr/auto_follow/{name}/pause": { @@ -2672,7 +2707,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/{index}/_ccr/pause_follow": { @@ -2710,7 +2746,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_ccr/auto_follow/{name}/resume": { @@ -2747,7 +2784,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/{index}/_ccr/resume_follow": { @@ -2825,7 +2863,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_ccr/stats": { @@ -2861,7 +2900,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/{index}/_ccr/unfollow": { @@ -2898,7 +2938,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_search/scroll": { @@ -3118,7 +3159,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_cluster/allocation/explain": { @@ -3146,7 +3188,8 @@ "200": { "$ref": "#/components/responses/cluster.allocation_explain#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -3172,7 +3215,8 @@ "200": { "$ref": "#/components/responses/cluster.allocation_explain#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_component_template/{name}": { @@ -3206,7 +3250,8 @@ "200": { "$ref": "#/components/responses/cluster.get_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "put": { "tags": [ @@ -3236,7 +3281,8 @@ "200": { "$ref": "#/components/responses/cluster.put_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "post": { "tags": [ @@ -3266,7 +3312,8 @@ "200": { "$ref": "#/components/responses/cluster.put_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "delete": { "tags": [ @@ -3322,7 +3369,8 @@ } } } - } + }, + "x-available-since": "7.8.0" }, "head": { "tags": [ @@ -3373,7 +3421,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.8.0" } }, "/_cluster/voting_config_exclusions": { @@ -3425,7 +3474,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.0.0" }, "delete": { "tags": [ @@ -3455,7 +3505,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.0.0" } }, "/_component_template": { @@ -3486,7 +3537,8 @@ "200": { "$ref": "#/components/responses/cluster.get_component_template#200" } - } + }, + "x-available-since": "7.8.0" } }, "/_cluster/settings": { @@ -3730,7 +3782,8 @@ "200": { "$ref": "#/components/responses/cluster.health#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_cluster/health/{index}": { @@ -3786,7 +3839,8 @@ "200": { "$ref": "#/components/responses/cluster.health#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_info/{target}": { @@ -3846,7 +3900,8 @@ } } } - } + }, + "x-available-since": "8.9.0" } }, "/_cluster/pending_tasks": { @@ -3932,7 +3987,8 @@ } } } - } + }, + "x-available-since": "6.1.0" } }, "/_cluster/reroute": { @@ -4054,7 +4110,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_cluster/state": { @@ -4097,7 +4154,8 @@ "200": { "$ref": "#/components/responses/cluster.state#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_cluster/state/{metric}": { @@ -4143,7 +4201,8 @@ "200": { "$ref": "#/components/responses/cluster.state#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_cluster/state/{metric}/{index}": { @@ -4192,7 +4251,8 @@ "200": { "$ref": "#/components/responses/cluster.state#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_cluster/stats": { @@ -4218,7 +4278,8 @@ "200": { "$ref": "#/components/responses/cluster.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_cluster/stats/nodes/{node_id}": { @@ -4247,7 +4308,8 @@ "200": { "$ref": "#/components/responses/cluster.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_connector/{connector_id}/_check_in": { @@ -4292,7 +4354,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}": { @@ -4329,7 +4392,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "put": { "tags": [ @@ -4352,7 +4416,8 @@ "200": { "$ref": "#/components/responses/connector.put#200" } - } + }, + "x-available-since": "8.12.0" }, "delete": { "tags": [ @@ -4398,7 +4463,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_last_sync": { @@ -4509,7 +4575,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector": { @@ -4610,7 +4677,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "put": { "tags": [ @@ -4628,7 +4696,8 @@ "200": { "$ref": "#/components/responses/connector.put#200" } - } + }, + "x-available-since": "8.12.0" }, "post": { "tags": [ @@ -4697,7 +4766,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -4742,7 +4812,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -4779,7 +4850,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "delete": { "tags": [ @@ -4814,7 +4886,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job": { @@ -4908,7 +4981,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "post": { "tags": [ @@ -4962,7 +5036,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -5007,7 +5082,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_api_key_id": { @@ -5084,7 +5160,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_configuration": { @@ -5150,7 +5227,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_error": { @@ -5220,7 +5298,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering": { @@ -5292,7 +5371,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -5355,7 +5435,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_index_name": { @@ -5425,7 +5506,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_name": { @@ -5491,7 +5573,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_native": { @@ -5554,7 +5637,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_pipeline": { @@ -5617,7 +5701,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_scheduling": { @@ -5680,7 +5765,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_service_type": { @@ -5743,7 +5829,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_status": { @@ -5806,7 +5893,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_count": { @@ -6114,7 +6202,8 @@ "200": { "$ref": "#/components/responses/create#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -6162,7 +6251,8 @@ "200": { "$ref": "#/components/responses/create#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_dangling/{index_uuid}": { @@ -6230,7 +6320,8 @@ } } } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -6296,7 +6387,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_dangling": { @@ -6331,7 +6423,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/{index}/_doc/{id}": { @@ -7285,7 +7378,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_delete_by_query/{task_id}/_rethrottle": { @@ -7332,7 +7426,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_scripts/{id}": { @@ -7529,7 +7624,8 @@ "200": { "$ref": "#/components/responses/enrich.get_policy#200" } - } + }, + "x-available-since": "7.5.0" }, "put": { "tags": [ @@ -7585,7 +7681,8 @@ } } } - } + }, + "x-available-since": "7.5.0" }, "delete": { "tags": [ @@ -7620,7 +7717,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -7675,7 +7773,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/policy": { @@ -7692,7 +7791,8 @@ "200": { "$ref": "#/components/responses/enrich.get_policy#200" } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/_stats": { @@ -7729,6 +7829,7 @@ }, "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" @@ -7743,7 +7844,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_eql/search/{id}": { @@ -7800,7 +7902,8 @@ } } } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -7836,7 +7939,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_eql/search/status/{id}": { @@ -7901,7 +8005,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/{index}/_eql/search": { @@ -7944,7 +8049,8 @@ "200": { "$ref": "#/components/responses/eql.search#200" } - } + }, + "x-available-since": "7.9.0" }, "post": { "tags": [ @@ -7985,7 +8091,8 @@ "200": { "$ref": "#/components/responses/eql.search#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_query": { @@ -8083,7 +8190,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/{index}/_source/{id}": { @@ -8362,7 +8470,8 @@ "application/json": {} } } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_explain/{id}": { @@ -8523,7 +8632,8 @@ } } } - } + }, + "x-available-since": "7.12.0" } }, "/_features/_reset": { @@ -8558,7 +8668,8 @@ } } } - } + }, + "x-available-since": "7.12.0" } }, "/_field_caps": { @@ -8605,7 +8716,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -8650,7 +8762,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_field_caps": { @@ -8700,7 +8813,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -8748,7 +8862,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_fleet/global_checkpoints": { @@ -8851,7 +8966,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_fleet/_fleet_msearch": { @@ -8910,7 +9026,8 @@ "200": { "$ref": "#/components/responses/fleet.msearch#200" } - } + }, + "x-available-since": "7.16.0" }, "post": { "tags": [ @@ -8967,7 +9084,8 @@ "200": { "$ref": "#/components/responses/fleet.msearch#200" } - } + }, + "x-available-since": "7.16.0" } }, "/{index}/_fleet/_fleet_msearch": { @@ -9029,7 +9147,8 @@ "200": { "$ref": "#/components/responses/fleet.msearch#200" } - } + }, + "x-available-since": "7.16.0" }, "post": { "tags": [ @@ -9089,7 +9208,8 @@ "200": { "$ref": "#/components/responses/fleet.msearch#200" } - } + }, + "x-available-since": "7.16.0" } }, "/{index}/_fleet/_fleet_search": { @@ -9243,7 +9363,8 @@ "200": { "$ref": "#/components/responses/fleet.search#200" } - } + }, + "x-available-since": "7.16.0" }, "post": { "tags": [ @@ -9395,7 +9516,8 @@ "200": { "$ref": "#/components/responses/fleet.search#200" } - } + }, + "x-available-since": "7.16.0" } }, "/_script_context": { @@ -9560,7 +9682,8 @@ "200": { "$ref": "#/components/responses/health_report#200" } - } + }, + "x-available-since": "8.7.0" } }, "/_health_report/{feature}": { @@ -9591,7 +9714,8 @@ "200": { "$ref": "#/components/responses/health_report#200" } - } + }, + "x-available-since": "8.7.0" } }, "/_ilm/policy/{policy}": { @@ -9619,7 +9743,8 @@ "200": { "$ref": "#/components/responses/ilm.get_lifecycle#200" } - } + }, + "x-available-since": "6.6.0" }, "put": { "tags": [ @@ -9689,7 +9814,8 @@ } } } - } + }, + "x-available-since": "6.6.0" }, "delete": { "tags": [ @@ -9745,7 +9871,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/{index}/_ilm/explain": { @@ -9834,7 +9961,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/_ilm/policy": { @@ -9859,7 +9987,8 @@ "200": { "$ref": "#/components/responses/ilm.get_lifecycle#200" } - } + }, + "x-available-since": "6.6.0" } }, "/_ilm/status": { @@ -9891,7 +10020,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/_ilm/migrate_to_data_tiers": { @@ -9989,7 +10119,8 @@ } } } - } + }, + "x-available-since": "7.14.0" } }, "/_ilm/move/{index}": { @@ -10043,7 +10174,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/{index}/_ilm/remove": { @@ -10095,7 +10227,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/{index}/_ilm/retry": { @@ -10132,7 +10265,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/_ilm/start": { @@ -10176,7 +10310,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/_ilm/stop": { @@ -10220,7 +10355,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/{index}/_doc": { @@ -10396,7 +10532,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_analyze": { @@ -10604,7 +10741,8 @@ "200": { "$ref": "#/components/responses/indices.clone#200" } - } + }, + "x-available-since": "7.4.0" }, "post": { "tags": [ @@ -10639,7 +10777,8 @@ "200": { "$ref": "#/components/responses/indices.clone#200" } - } + }, + "x-available-since": "7.4.0" } }, "/{index}/_close": { @@ -11185,7 +11324,8 @@ "200": { "$ref": "#/components/responses/indices.get_data_stream#200" } - } + }, + "x-available-since": "7.9.0" }, "put": { "tags": [ @@ -11221,7 +11361,8 @@ } } } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -11266,7 +11407,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/_stats": { @@ -11288,7 +11430,8 @@ "200": { "$ref": "#/components/responses/indices.data_streams_stats#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/{name}/_stats": { @@ -11313,7 +11456,8 @@ "200": { "$ref": "#/components/responses/indices.data_streams_stats#200" } - } + }, + "x-available-since": "7.9.0" } }, "/{index}/_alias/{name}": { @@ -11641,7 +11785,8 @@ } } } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -11723,7 +11868,8 @@ } } } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -11788,7 +11934,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/_index_template/{name}": { @@ -11823,7 +11970,8 @@ "200": { "$ref": "#/components/responses/indices.get_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "put": { "tags": [ @@ -11856,7 +12004,8 @@ "200": { "$ref": "#/components/responses/indices.put_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "post": { "tags": [ @@ -11889,7 +12038,8 @@ "200": { "$ref": "#/components/responses/indices.put_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -11945,7 +12095,8 @@ } } } - } + }, + "x-available-since": "7.8.0" }, "head": { "tags": [ @@ -12294,7 +12445,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/{index}/_downsample/{target_index}": { @@ -12352,7 +12504,8 @@ } } } - } + }, + "x-available-since": "8.5.0" } }, "/_alias/{name}": { @@ -12486,7 +12639,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/{index}/_field_usage_stats": { @@ -12593,7 +12747,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_flush": { @@ -12771,7 +12926,8 @@ "200": { "$ref": "#/components/responses/indices.forcemerge#200" } - } + }, + "x-available-since": "2.1.0" } }, "/{index}/_forcemerge": { @@ -12814,7 +12970,8 @@ "200": { "$ref": "#/components/responses/indices.forcemerge#200" } - } + }, + "x-available-since": "2.1.0" } }, "/_alias": { @@ -12904,7 +13061,8 @@ "200": { "$ref": "#/components/responses/indices.get_data_stream#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_mapping/field/{fields}": { @@ -13015,7 +13173,8 @@ "200": { "$ref": "#/components/responses/indices.get_index_template#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_mapping": { @@ -13502,7 +13661,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/_modify": { @@ -13548,7 +13708,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/{index}/_open": { @@ -13695,7 +13856,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_recovery": { @@ -13899,7 +14061,8 @@ "200": { "$ref": "#/components/responses/indices.reload_search_analyzers#200" } - } + }, + "x-available-since": "7.3.0" }, "post": { "tags": [ @@ -13928,7 +14091,8 @@ "200": { "$ref": "#/components/responses/indices.reload_search_analyzers#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_resolve/cluster/{name}": { @@ -14009,7 +14173,8 @@ } } } - } + }, + "x-available-since": "8.13.0" } }, "/_resolve/index/{name}": { @@ -14082,7 +14247,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/{alias}/_rollover": { @@ -14119,7 +14285,8 @@ "200": { "$ref": "#/components/responses/indices.rollover#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{alias}/_rollover/{new_index}": { @@ -14159,7 +14326,8 @@ "200": { "$ref": "#/components/responses/indices.rollover#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_segments": { @@ -14330,7 +14498,8 @@ "200": { "$ref": "#/components/responses/indices.shrink#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -14365,7 +14534,8 @@ "200": { "$ref": "#/components/responses/indices.shrink#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_index_template/_simulate_index/{name}": { @@ -14437,7 +14607,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_index_template/_simulate": { @@ -14541,7 +14712,8 @@ "200": { "$ref": "#/components/responses/indices.split#200" } - } + }, + "x-available-since": "6.1.0" }, "post": { "tags": [ @@ -14576,7 +14748,8 @@ "200": { "$ref": "#/components/responses/indices.split#200" } - } + }, + "x-available-since": "6.1.0" } }, "/_stats": { @@ -14623,7 +14796,8 @@ "200": { "$ref": "#/components/responses/indices.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_stats/{metric}": { @@ -14673,7 +14847,8 @@ "200": { "$ref": "#/components/responses/indices.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_stats": { @@ -14723,7 +14898,8 @@ "200": { "$ref": "#/components/responses/indices.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_stats/{metric}": { @@ -14776,7 +14952,8 @@ "200": { "$ref": "#/components/responses/indices.stats#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_unfreeze": { @@ -14885,7 +15062,8 @@ } } } - } + }, + "x-available-since": "6.6.0" } }, "/_aliases": { @@ -14950,7 +15128,8 @@ } } } - } + }, + "x-available-since": "1.3.0" } }, "/_validate/query": { @@ -15008,7 +15187,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -15064,7 +15244,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_validate/query": { @@ -15125,7 +15306,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -15184,7 +15366,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_inference/{inference_id}": { @@ -15206,7 +15389,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -15229,7 +15413,8 @@ "200": { "$ref": "#/components/responses/inference.put#200" } - } + }, + "x-available-since": "8.11.0" }, "post": { "tags": [ @@ -15255,7 +15440,8 @@ "200": { "$ref": "#/components/responses/inference.inference#200" } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -15281,7 +15467,8 @@ "200": { "$ref": "#/components/responses/inference.delete#200" } - } + }, + "x-available-since": "8.11.0" } }, "/_inference/{task_type}/{inference_id}": { @@ -15306,7 +15493,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -15332,7 +15520,8 @@ "200": { "$ref": "#/components/responses/inference.put#200" } - } + }, + "x-available-since": "8.11.0" }, "post": { "tags": [ @@ -15361,7 +15550,8 @@ "200": { "$ref": "#/components/responses/inference.inference#200" } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -15390,7 +15580,8 @@ "200": { "$ref": "#/components/responses/inference.delete#200" } - } + }, + "x-available-since": "8.11.0" } }, "/_inference": { @@ -15407,7 +15598,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" } }, "/": { @@ -15502,7 +15694,8 @@ "200": { "$ref": "#/components/responses/ingest.get_pipeline#200" } - } + }, + "x-available-since": "5.0.0" }, "put": { "tags": [ @@ -15604,7 +15797,8 @@ } } } - } + }, + "x-available-since": "5.0.0" }, "delete": { "tags": [ @@ -15659,7 +15853,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/geoip/stats": { @@ -15699,7 +15894,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_ingest/pipeline": { @@ -15725,7 +15921,8 @@ "200": { "$ref": "#/components/responses/ingest.get_pipeline#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/processor/grok": { @@ -15761,7 +15958,8 @@ } } } - } + }, + "x-available-since": "6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -15786,7 +15984,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -15809,7 +16008,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/pipeline/{id}/_simulate": { @@ -15837,7 +16037,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -15863,7 +16064,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{index}/_knn_search": { @@ -15892,7 +16094,8 @@ "$ref": "#/components/responses/knn_search#200" } }, - "deprecated": true + "deprecated": true, + "x-available-since": "8.0.0" }, "post": { "tags": [ @@ -15919,7 +16122,8 @@ "$ref": "#/components/responses/knn_search#200" } }, - "deprecated": true + "deprecated": true, + "x-available-since": "8.0.0" } }, "/_license": { @@ -16074,7 +16278,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_license/trial_status": { @@ -16106,7 +16311,8 @@ } } } - } + }, + "x-available-since": "6.1.0" } }, "/_license/start_basic": { @@ -16177,7 +16383,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_license/start_trial": { @@ -16240,7 +16447,8 @@ } } } - } + }, + "x-available-since": "6.1.0" } }, "/_logstash/pipeline/{id}": { @@ -16262,7 +16470,8 @@ "200": { "$ref": "#/components/responses/logstash.get_pipeline#200" } - } + }, + "x-available-since": "7.12.0" }, "put": { "tags": [ @@ -16303,7 +16512,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.12.0" }, "delete": { "tags": [ @@ -16334,7 +16544,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.12.0" } }, "/_logstash/pipeline": { @@ -16351,7 +16562,8 @@ "200": { "$ref": "#/components/responses/logstash.get_pipeline#200" } - } + }, + "x-available-since": "7.12.0" } }, "/_mget": { @@ -16400,7 +16612,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -16447,7 +16660,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_mget": { @@ -16499,7 +16713,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -16549,7 +16764,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_migration/deprecations": { @@ -16566,7 +16782,8 @@ "200": { "$ref": "#/components/responses/migration.deprecations#200" } - } + }, + "x-available-since": "6.1.0" } }, "/{index}/_migration/deprecations": { @@ -16588,7 +16805,8 @@ "200": { "$ref": "#/components/responses/migration.deprecations#200" } - } + }, + "x-available-since": "6.1.0" } }, "/_migration/system_features": { @@ -16627,7 +16845,8 @@ } } } - } + }, + "x-available-since": "7.16.0" }, "post": { "tags": [ @@ -16664,7 +16883,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/_ml/trained_models/{model_id}/deployment/cache/_clear": { @@ -16710,7 +16930,8 @@ } } } - } + }, + "x-available-since": "8.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -16808,7 +17029,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -16839,7 +17061,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "put": { "tags": [ @@ -16912,7 +17135,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -16941,7 +17165,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "delete": { "tags": [ @@ -16976,7 +17201,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -17024,7 +17250,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -17088,7 +17315,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "delete": { "tags": [ @@ -17150,7 +17378,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -17185,7 +17414,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" }, "put": { "tags": [ @@ -17324,7 +17554,8 @@ } } } - } + }, + "x-available-since": "7.3.0" }, "delete": { "tags": [ @@ -17379,7 +17610,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -17408,7 +17640,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeeds#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -17613,7 +17846,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -17658,7 +17892,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/_delete_expired_data/{job_id}": { @@ -17690,7 +17925,8 @@ "200": { "$ref": "#/components/responses/ml.delete_expired_data#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/_delete_expired_data": { @@ -17719,7 +17955,8 @@ "200": { "$ref": "#/components/responses/ml.delete_expired_data#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -17748,7 +17985,8 @@ "200": { "$ref": "#/components/responses/ml.get_filters#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -17826,7 +18064,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -17862,7 +18101,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast": { @@ -17963,7 +18203,8 @@ } } } - } + }, + "x-available-since": "6.1.0" }, "delete": { "tags": [ @@ -17990,7 +18231,8 @@ "200": { "$ref": "#/components/responses/ml.delete_forecast#200" } - } + }, + "x-available-since": "6.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_forecast/{forecast_id}": { @@ -18022,7 +18264,8 @@ "200": { "$ref": "#/components/responses/ml.delete_forecast#200" } - } + }, + "x-available-since": "6.5.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -18051,7 +18294,8 @@ "200": { "$ref": "#/components/responses/ml.get_jobs#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -18236,7 +18480,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -18302,7 +18547,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}": { @@ -18348,7 +18594,8 @@ "200": { "$ref": "#/components/responses/ml.get_model_snapshots#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -18392,7 +18639,8 @@ "200": { "$ref": "#/components/responses/ml.get_model_snapshots#200" } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -18439,7 +18687,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -18482,7 +18731,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models#200" } - } + }, + "x-available-since": "7.10.0" }, "put": { "tags": [ @@ -18591,7 +18841,8 @@ } } } - } + }, + "x-available-since": "7.10.0" }, "delete": { "tags": [ @@ -18636,7 +18887,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -18695,7 +18947,8 @@ } } } - } + }, + "x-available-since": "7.13.0" }, "delete": { "tags": [ @@ -18742,7 +18995,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -18804,7 +19058,8 @@ } } } - } + }, + "x-available-since": "7.7.0" } }, "/_ml/data_frame/_evaluate": { @@ -18865,7 +19120,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/_explain": { @@ -18886,7 +19142,8 @@ "200": { "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" }, "post": { "tags": [ @@ -18905,7 +19162,8 @@ "200": { "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/{id}/_explain": { @@ -18931,7 +19189,8 @@ "200": { "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" }, "post": { "tags": [ @@ -18955,7 +19214,8 @@ "200": { "$ref": "#/components/responses/ml.explain_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -19082,7 +19342,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets/{timestamp}": { @@ -19138,7 +19399,8 @@ "200": { "$ref": "#/components/responses/ml.get_buckets#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -19192,7 +19454,8 @@ "200": { "$ref": "#/components/responses/ml.get_buckets#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/buckets": { @@ -19245,7 +19508,8 @@ "200": { "$ref": "#/components/responses/ml.get_buckets#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -19296,7 +19560,8 @@ "200": { "$ref": "#/components/responses/ml.get_buckets#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -19398,7 +19663,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -19466,7 +19732,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars": { @@ -19494,7 +19761,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -19520,7 +19788,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories/{category_id}": { @@ -19557,7 +19826,8 @@ "200": { "$ref": "#/components/responses/ml.get_categories#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -19592,7 +19862,8 @@ "200": { "$ref": "#/components/responses/ml.get_categories#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/categories": { @@ -19626,7 +19897,8 @@ "200": { "$ref": "#/components/responses/ml.get_categories#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -19658,7 +19930,8 @@ "200": { "$ref": "#/components/responses/ml.get_categories#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/data_frame/analytics": { @@ -19690,7 +19963,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -19721,7 +19995,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -19755,7 +20030,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -19781,7 +20057,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeed_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -19804,7 +20081,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeed_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/datafeeds": { @@ -19830,7 +20108,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeeds#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/filters": { @@ -19856,7 +20135,8 @@ "200": { "$ref": "#/components/responses/ml.get_filters#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/influencers": { @@ -19906,7 +20186,8 @@ "200": { "$ref": "#/components/responses/ml.get_influencers#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -19954,7 +20235,8 @@ "200": { "$ref": "#/components/responses/ml.get_influencers#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -19976,7 +20258,8 @@ "200": { "$ref": "#/components/responses/ml.get_job_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -20001,7 +20284,8 @@ "200": { "$ref": "#/components/responses/ml.get_job_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors": { @@ -20027,7 +20311,8 @@ "200": { "$ref": "#/components/responses/ml.get_jobs#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/memory/_stats": { @@ -20055,7 +20340,8 @@ "200": { "$ref": "#/components/responses/ml.get_memory_stats#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_ml/memory/{node_id}/_stats": { @@ -20086,7 +20372,8 @@ "200": { "$ref": "#/components/responses/ml.get_memory_stats#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade/_stats": { @@ -20159,7 +20446,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots": { @@ -20202,7 +20490,8 @@ "200": { "$ref": "#/components/responses/ml.get_model_snapshots#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -20243,7 +20532,8 @@ "200": { "$ref": "#/components/responses/ml.get_model_snapshots#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -20290,7 +20580,8 @@ "200": { "$ref": "#/components/responses/ml.get_overall_buckets#200" } - } + }, + "x-available-since": "6.1.0" }, "post": { "tags": [ @@ -20335,7 +20626,8 @@ "200": { "$ref": "#/components/responses/ml.get_overall_buckets#200" } - } + }, + "x-available-since": "6.1.0" } }, "/_ml/anomaly_detectors/{job_id}/results/records": { @@ -20385,7 +20677,8 @@ "200": { "$ref": "#/components/responses/ml.get_records#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -20433,7 +20726,8 @@ "200": { "$ref": "#/components/responses/ml.get_records#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models": { @@ -20473,7 +20767,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -20505,7 +20800,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models_stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/_stats": { @@ -20534,7 +20830,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models_stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -20562,7 +20859,8 @@ "200": { "$ref": "#/components/responses/ml.infer_trained_model#200" } - } + }, + "x-available-since": "8.3.0" } }, "/_ml/trained_models/{model_id}/deployment/_infer": { @@ -20590,7 +20888,8 @@ "200": { "$ref": "#/components/responses/ml.infer_trained_model#200" } - } + }, + "x-available-since": "8.3.0" } }, "/_ml/info": { @@ -20635,7 +20934,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -20709,7 +21009,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_data": { @@ -20845,7 +21146,8 @@ } } }, - "deprecated": true + "deprecated": true, + "x-available-since": "5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -20865,7 +21167,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" }, "post": { "tags": [ @@ -20883,7 +21186,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -20908,7 +21212,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" }, "post": { "tags": [ @@ -20931,7 +21236,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -20963,7 +21269,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -20993,7 +21300,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -21022,7 +21330,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -21049,7 +21358,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -21126,7 +21436,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -21168,6 +21479,7 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", + "x-available-since": "8.2.0", "type": "array", "items": { "type": "string" @@ -21175,6 +21487,7 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", + "x-available-since": "8.9.0", "type": "array", "items": { "type": "number" @@ -21200,7 +21513,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -21258,7 +21572,8 @@ } } } - } + }, + "x-available-since": "7.14.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_revert": { @@ -21340,7 +21655,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/set_upgrade_mode": { @@ -21387,7 +21703,8 @@ } } } - } + }, + "x-available-since": "6.7.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -21447,7 +21764,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -21548,7 +21866,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -21673,7 +21992,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -21749,7 +22069,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -21847,7 +22168,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -21912,7 +22234,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -22032,7 +22355,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -22240,7 +22564,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -22326,7 +22651,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -22534,7 +22860,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_update": { @@ -22614,7 +22941,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -22684,7 +23012,8 @@ } } } - } + }, + "x-available-since": "8.6.0" } }, "/_ml/anomaly_detectors/{job_id}/model_snapshots/{snapshot_id}/_upgrade": { @@ -22766,7 +23095,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/_validate": { @@ -22829,7 +23159,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_ml/anomaly_detectors/_validate/detector": { @@ -22863,7 +23194,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_monitoring/bulk": { @@ -22894,7 +23226,8 @@ "200": { "$ref": "#/components/responses/monitoring.bulk#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -22923,7 +23256,8 @@ "200": { "$ref": "#/components/responses/monitoring.bulk#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_monitoring/{type}/bulk": { @@ -22957,7 +23291,8 @@ "200": { "$ref": "#/components/responses/monitoring.bulk#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -22989,7 +23324,8 @@ "200": { "$ref": "#/components/responses/monitoring.bulk#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_msearch": { @@ -23047,7 +23383,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -23103,7 +23440,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_msearch": { @@ -23164,7 +23502,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -23223,7 +23562,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_msearch/template": { @@ -23260,7 +23600,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -23295,7 +23636,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{index}/_msearch/template": { @@ -23335,7 +23677,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -23373,7 +23716,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_mtermvectors": { @@ -23655,7 +23999,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/_nodes/{node_id}/_repositories_metering": { @@ -23693,7 +24038,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/_nodes/hot_threads": { @@ -23812,7 +24158,8 @@ "200": { "$ref": "#/components/responses/nodes.info#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_nodes/{node_id}": { @@ -23843,7 +24190,8 @@ "200": { "$ref": "#/components/responses/nodes.info#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_nodes/{metric}": { @@ -23874,7 +24222,8 @@ "200": { "$ref": "#/components/responses/nodes.info#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_nodes/{node_id}/{metric}": { @@ -23908,7 +24257,8 @@ "200": { "$ref": "#/components/responses/nodes.info#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_nodes/reload_secure_settings": { @@ -23933,7 +24283,8 @@ "200": { "$ref": "#/components/responses/nodes.reload_secure_settings#200" } - } + }, + "x-available-since": "6.5.0" } }, "/_nodes/{node_id}/reload_secure_settings": { @@ -23961,7 +24312,8 @@ "200": { "$ref": "#/components/responses/nodes.reload_secure_settings#200" } - } + }, + "x-available-since": "6.5.0" } }, "/_nodes/stats": { @@ -24304,7 +24656,8 @@ "200": { "$ref": "#/components/responses/nodes.usage#200" } - } + }, + "x-available-since": "6.0.0" } }, "/_nodes/{node_id}/usage": { @@ -24329,7 +24682,8 @@ "200": { "$ref": "#/components/responses/nodes.usage#200" } - } + }, + "x-available-since": "6.0.0" } }, "/_nodes/usage/{metric}": { @@ -24354,7 +24708,8 @@ "200": { "$ref": "#/components/responses/nodes.usage#200" } - } + }, + "x-available-since": "6.0.0" } }, "/_nodes/{node_id}/usage/{metric}": { @@ -24382,7 +24737,8 @@ "200": { "$ref": "#/components/responses/nodes.usage#200" } - } + }, + "x-available-since": "6.0.0" } }, "/{index}/_pit": { @@ -24479,7 +24835,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_scripts/{id}/{context}": { @@ -24593,7 +24950,8 @@ } } } - } + }, + "x-available-since": "8.15.0" }, "put": { "tags": [ @@ -24686,7 +25044,8 @@ } } } - } + }, + "x-available-since": "8.15.0" }, "delete": { "tags": [ @@ -24732,7 +25091,8 @@ } } } - } + }, + "x-available-since": "8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -24769,7 +25129,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -24840,7 +25201,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -24875,7 +25237,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_query_rules": { @@ -24936,7 +25299,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_rank_eval": { @@ -24970,7 +25334,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -25002,7 +25367,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" } }, "/{index}/_rank_eval": { @@ -25039,7 +25405,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -25074,7 +25441,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" } }, "/_reindex": { @@ -25268,7 +25636,8 @@ } } } - } + }, + "x-available-since": "2.3.0" } }, "/_reindex/{task_id}/_rethrottle": { @@ -25326,7 +25695,8 @@ } } } - } + }, + "x-available-since": "2.4.0" } }, "/_render/template": { @@ -25434,7 +25804,8 @@ "200": { "$ref": "#/components/responses/rollup.get_jobs#200" } - } + }, + "x-available-since": "6.3.0" }, "put": { "tags": [ @@ -25519,7 +25890,8 @@ } } } - } + }, + "x-available-since": "6.3.0" }, "delete": { "tags": [ @@ -25568,7 +25940,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_rollup/job": { @@ -25585,7 +25958,8 @@ "200": { "$ref": "#/components/responses/rollup.get_jobs#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_rollup/data/{id}": { @@ -25607,7 +25981,8 @@ "200": { "$ref": "#/components/responses/rollup.get_rollup_caps#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_rollup/data": { @@ -25624,7 +25999,8 @@ "200": { "$ref": "#/components/responses/rollup.get_rollup_caps#200" } - } + }, + "x-available-since": "6.3.0" } }, "/{index}/_rollup/data": { @@ -25664,7 +26040,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/{index}/_rollup_search": { @@ -25695,7 +26072,8 @@ "200": { "$ref": "#/components/responses/rollup.rollup_search#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -25724,7 +26102,8 @@ "200": { "$ref": "#/components/responses/rollup.rollup_search#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_rollup/job/{id}/_start": { @@ -25769,7 +26148,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_rollup/job/{id}/_stop": { @@ -25834,7 +26214,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_scripts/painless/_execute": { @@ -25854,7 +26235,8 @@ "200": { "$ref": "#/components/responses/scripts_painless_execute#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -25872,7 +26254,8 @@ "200": { "$ref": "#/components/responses/scripts_painless_execute#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_search": { @@ -26531,7 +26914,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "put": { "tags": [ @@ -26594,7 +26978,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "delete": { "tags": [ @@ -26629,7 +27014,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/analytics/{name}": { @@ -26651,7 +27037,8 @@ "200": { "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } - } + }, + "x-available-since": "8.8.0" }, "put": { "tags": [ @@ -26686,7 +27073,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "delete": { "tags": [ @@ -26721,7 +27109,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/analytics": { @@ -26738,7 +27127,8 @@ "200": { "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } - } + }, + "x-available-since": "8.8.0" } }, "/_application/search_application": { @@ -26809,7 +27199,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/search_application/{name}/_search": { @@ -26837,7 +27228,8 @@ "200": { "$ref": "#/components/responses/search_application.search#200" } - } + }, + "x-available-since": "8.8.0" }, "post": { "tags": [ @@ -26863,7 +27255,8 @@ "200": { "$ref": "#/components/responses/search_application.search#200" } - } + }, + "x-available-since": "8.8.0" } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -26922,7 +27315,8 @@ "200": { "$ref": "#/components/responses/search_mvt#200" } - } + }, + "x-available-since": "7.15.0" }, "post": { "tags": [ @@ -26979,7 +27373,8 @@ "200": { "$ref": "#/components/responses/search_mvt#200" } - } + }, + "x-available-since": "7.15.0" } }, "/_search_shards": { @@ -27190,7 +27585,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" }, "post": { "tags": [ @@ -27249,7 +27645,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" } }, "/{index}/_search/template": { @@ -27313,7 +27710,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" }, "post": { "tags": [ @@ -27375,7 +27773,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" } }, "/_searchable_snapshots/cache/stats": { @@ -27397,7 +27796,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.cache_stats#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_searchable_snapshots/{node_id}/cache/stats": { @@ -27422,7 +27822,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.cache_stats#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_searchable_snapshots/cache/clear": { @@ -27456,7 +27857,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.clear_cache#200" } - } + }, + "x-available-since": "7.10.0" } }, "/{index}/_searchable_snapshots/cache/clear": { @@ -27493,7 +27895,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.clear_cache#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_snapshot/{repository}/{snapshot}/_mount": { @@ -27612,7 +28015,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_searchable_snapshots/stats": { @@ -27634,7 +28038,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/{index}/_searchable_snapshots/stats": { @@ -27659,7 +28064,8 @@ "200": { "$ref": "#/components/responses/searchable_snapshots.stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_security/profile/_activate": { @@ -27710,7 +28116,8 @@ } } } - } + }, + "x-available-since": "8.2.0" } }, "/_security/_authenticate": { @@ -27798,7 +28205,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_security/role": { @@ -27899,7 +28307,8 @@ } } } - } + }, + "x-available-since": "8.15.0" }, "delete": { "tags": [ @@ -27975,7 +28384,8 @@ } } } - } + }, + "x-available-since": "8.15.0" } }, "/_security/user/{username}/_password": { @@ -28134,7 +28544,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_security/privilege/{application}/_clear_cache": { @@ -28190,7 +28601,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_security/realm/{realms}/_clear_cache": { @@ -28512,7 +28924,8 @@ } } } - } + }, + "x-available-since": "6.7.0" }, "put": { "tags": [ @@ -28536,7 +28949,8 @@ "200": { "$ref": "#/components/responses/security.create_api_key#200" } - } + }, + "x-available-since": "6.7.0" }, "post": { "tags": [ @@ -28560,7 +28974,8 @@ "200": { "$ref": "#/components/responses/security.create_api_key#200" } - } + }, + "x-available-since": "6.7.0" }, "delete": { "tags": [ @@ -28647,7 +29062,8 @@ } } } - } + }, + "x-available-since": "6.7.0" } }, "/_security/service/{namespace}/{service}/credential/token/{name}": { @@ -28782,7 +29198,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_security/service/{namespace}/{service}/credential/token": { @@ -28835,7 +29252,8 @@ "200": { "$ref": "#/components/responses/security.get_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "delete": { "tags": [ @@ -28897,7 +29315,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/_security/role/{name}": { @@ -29049,7 +29468,8 @@ "200": { "$ref": "#/components/responses/security.get_role_mapping#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -29075,7 +29495,8 @@ "200": { "$ref": "#/components/responses/security.put_role_mapping#200" } - } + }, + "x-available-since": "5.5.0" }, "post": { "tags": [ @@ -29101,7 +29522,8 @@ "200": { "$ref": "#/components/responses/security.put_role_mapping#200" } - } + }, + "x-available-since": "5.5.0" }, "delete": { "tags": [ @@ -29154,7 +29576,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_security/user/{username}": { @@ -29359,7 +29782,8 @@ "200": { "$ref": "#/components/responses/security.disable_user_profile#200" } - } + }, + "x-available-since": "8.2.0" }, "post": { "tags": [ @@ -29382,7 +29806,8 @@ "200": { "$ref": "#/components/responses/security.disable_user_profile#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_security/user/{username}/_enable": { @@ -29455,7 +29880,8 @@ "200": { "$ref": "#/components/responses/security.enable_user_profile#200" } - } + }, + "x-available-since": "8.2.0" }, "post": { "tags": [ @@ -29478,7 +29904,8 @@ "200": { "$ref": "#/components/responses/security.enable_user_profile#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_security/enroll/kibana": { @@ -29514,7 +29941,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_security/enroll/node": { @@ -29569,7 +29997,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_security/privilege/_builtin": { @@ -29608,7 +30037,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_security/privilege": { @@ -29625,7 +30055,8 @@ "200": { "$ref": "#/components/responses/security.get_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "put": { "tags": [ @@ -29648,7 +30079,8 @@ "200": { "$ref": "#/components/responses/security.put_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "post": { "tags": [ @@ -29671,7 +30103,8 @@ "200": { "$ref": "#/components/responses/security.put_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/privilege/{application}": { @@ -29693,7 +30126,8 @@ "200": { "$ref": "#/components/responses/security.get_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/role_mapping": { @@ -29710,7 +30144,8 @@ "200": { "$ref": "#/components/responses/security.get_role_mapping#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_security/service/{namespace}/{service}": { @@ -29735,7 +30170,8 @@ "200": { "$ref": "#/components/responses/security.get_service_accounts#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_security/service/{namespace}": { @@ -29757,7 +30193,8 @@ "200": { "$ref": "#/components/responses/security.get_service_accounts#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_security/service": { @@ -29774,7 +30211,8 @@ "200": { "$ref": "#/components/responses/security.get_service_accounts#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_security/service/{namespace}/{service}/credential": { @@ -29845,7 +30283,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_security/oauth2/token": { @@ -29928,7 +30367,8 @@ } } } - } + }, + "x-available-since": "5.5.0" }, "delete": { "tags": [ @@ -29996,7 +30436,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_security/user": { @@ -30120,7 +30561,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_security/profile/{uid}": { @@ -30201,7 +30643,8 @@ } } } - } + }, + "x-available-since": "8.2.0" } }, "/_security/api_key/grant": { @@ -30284,7 +30727,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_security/user/_has_privileges": { @@ -30304,7 +30748,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "post": { "tags": [ @@ -30322,7 +30767,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/user/{user}/_has_privileges": { @@ -30347,7 +30793,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "post": { "tags": [ @@ -30370,7 +30817,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/profile/_has_privileges": { @@ -30390,7 +30838,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges_user_profile#200" } - } + }, + "x-available-since": "8.3.0" }, "post": { "tags": [ @@ -30408,7 +30857,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges_user_profile#200" } - } + }, + "x-available-since": "8.3.0" } }, "/_security/_query/api_key": { @@ -30440,7 +30890,8 @@ "200": { "$ref": "#/components/responses/security.query_api_keys#200" } - } + }, + "x-available-since": "7.15.0" }, "post": { "tags": [ @@ -30470,7 +30921,8 @@ "200": { "$ref": "#/components/responses/security.query_api_keys#200" } - } + }, + "x-available-since": "7.15.0" } }, "/_security/_query/role": { @@ -30491,7 +30943,8 @@ "200": { "$ref": "#/components/responses/security.query_role#200" } - } + }, + "x-available-since": "8.15.0" }, "post": { "tags": [ @@ -30510,7 +30963,8 @@ "200": { "$ref": "#/components/responses/security.query_role#200" } - } + }, + "x-available-since": "8.15.0" } }, "/_security/_query/user": { @@ -30536,7 +30990,8 @@ "200": { "$ref": "#/components/responses/security.query_user#200" } - } + }, + "x-available-since": "8.14.0" }, "post": { "tags": [ @@ -30560,7 +31015,8 @@ "200": { "$ref": "#/components/responses/security.query_user#200" } - } + }, + "x-available-since": "8.14.0" } }, "/_security/saml/authenticate": { @@ -30635,7 +31091,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_security/saml/complete_logout": { @@ -30686,7 +31143,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.14.0" } }, "/_security/saml/invalidate": { @@ -30753,7 +31211,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_security/saml/logout": { @@ -30808,7 +31267,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_security/saml/prepare": { @@ -30872,7 +31332,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_security/saml/metadata/{realm_name}": { @@ -30917,7 +31378,8 @@ } } } - } + }, + "x-available-since": "7.11.0" } }, "/_security/profile/_suggest": { @@ -30942,7 +31404,8 @@ "200": { "$ref": "#/components/responses/security.suggest_user_profiles#200" } - } + }, + "x-available-since": "8.2.0" }, "post": { "tags": [ @@ -30965,7 +31428,8 @@ "200": { "$ref": "#/components/responses/security.suggest_user_profiles#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_security/api_key/{id}": { @@ -31039,7 +31503,8 @@ } } } - } + }, + "x-available-since": "8.4.0" } }, "/_security/profile/{uid}/_data": { @@ -31073,7 +31538,8 @@ "200": { "$ref": "#/components/responses/security.update_user_profile_data#200" } - } + }, + "x-available-since": "8.2.0" }, "post": { "tags": [ @@ -31105,7 +31571,8 @@ "200": { "$ref": "#/components/responses/security.update_user_profile_data#200" } - } + }, + "x-available-since": "8.2.0" } }, "/_nodes/{node_id}/shutdown": { @@ -31134,7 +31601,8 @@ "200": { "$ref": "#/components/responses/shutdown.get_node#200" } - } + }, + "x-available-since": "7.13.0" }, "put": { "tags": [ @@ -31221,7 +31689,8 @@ } } } - } + }, + "x-available-since": "7.13.0" }, "delete": { "tags": [ @@ -31277,7 +31746,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_nodes/shutdown": { @@ -31303,7 +31773,8 @@ "200": { "$ref": "#/components/responses/shutdown.get_node#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_slm/policy/{policy_id}": { @@ -31325,7 +31796,8 @@ "200": { "$ref": "#/components/responses/slm.get_lifecycle#200" } - } + }, + "x-available-since": "7.4.0" }, "put": { "tags": [ @@ -31407,7 +31879,8 @@ } } } - } + }, + "x-available-since": "7.4.0" }, "delete": { "tags": [ @@ -31442,7 +31915,8 @@ } } } - } + }, + "x-available-since": "7.4.0" } }, "/_slm/policy/{policy_id}/_execute": { @@ -31487,7 +31961,8 @@ } } } - } + }, + "x-available-since": "7.4.0" } }, "/_slm/_execute_retention": { @@ -31511,7 +31986,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_slm/policy": { @@ -31528,7 +32004,8 @@ "200": { "$ref": "#/components/responses/slm.get_lifecycle#200" } - } + }, + "x-available-since": "7.4.0" } }, "/_slm/stats": { @@ -31599,7 +32076,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_slm/status": { @@ -31631,7 +32109,8 @@ } } } - } + }, + "x-available-since": "7.6.0" } }, "/_slm/start": { @@ -31655,7 +32134,8 @@ } } } - } + }, + "x-available-since": "7.6.0" } }, "/_slm/stop": { @@ -31679,7 +32159,8 @@ } } } - } + }, + "x-available-since": "7.6.0" } }, "/_snapshot/{repository}/_cleanup": { @@ -31744,7 +32225,8 @@ } } } - } + }, + "x-available-since": "7.4.0" } }, "/_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}": { @@ -31840,7 +32322,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_snapshot/{repository}/{snapshot}": { @@ -32029,10 +32512,12 @@ }, "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" } }, @@ -32044,7 +32529,8 @@ } } } - } + }, + "x-available-since": "0.0.0" }, "put": { "tags": [ @@ -32076,7 +32562,8 @@ "200": { "$ref": "#/components/responses/snapshot.create#200" } - } + }, + "x-available-since": "0.0.0" }, "post": { "tags": [ @@ -32108,7 +32595,8 @@ "200": { "$ref": "#/components/responses/snapshot.create#200" } - } + }, + "x-available-since": "0.0.0" }, "delete": { "tags": [ @@ -32192,7 +32680,8 @@ "200": { "$ref": "#/components/responses/snapshot.get_repository#200" } - } + }, + "x-available-since": "0.0.0" }, "put": { "tags": [ @@ -32224,7 +32713,8 @@ "200": { "$ref": "#/components/responses/snapshot.create_repository#200" } - } + }, + "x-available-since": "0.0.0" }, "post": { "tags": [ @@ -32256,7 +32746,8 @@ "200": { "$ref": "#/components/responses/snapshot.create_repository#200" } - } + }, + "x-available-since": "0.0.0" }, "delete": { "tags": [ @@ -32311,7 +32802,8 @@ } } } - } + }, + "x-available-since": "0.0.0" } }, "/_snapshot": { @@ -32336,7 +32828,8 @@ "200": { "$ref": "#/components/responses/snapshot.get_repository#200" } - } + }, + "x-available-since": "0.0.0" } }, "/_snapshot/{repository}/{snapshot}/_restore": { @@ -32459,7 +32952,8 @@ } } } - } + }, + "x-available-since": "0.0.0" } }, "/_snapshot/_status": { @@ -32484,7 +32978,8 @@ "200": { "$ref": "#/components/responses/snapshot.status#200" } - } + }, + "x-available-since": "7.8.0" } }, "/_snapshot/{repository}/_status": { @@ -32512,7 +33007,8 @@ "200": { "$ref": "#/components/responses/snapshot.status#200" } - } + }, + "x-available-since": "7.8.0" } }, "/_snapshot/{repository}/{snapshot}/_status": { @@ -32543,7 +33039,8 @@ "200": { "$ref": "#/components/responses/snapshot.status#200" } - } + }, + "x-available-since": "7.8.0" } }, "/_snapshot/{repository}/_verify": { @@ -32611,7 +33108,8 @@ } } } - } + }, + "x-available-since": "0.0.0" } }, "/_sql/close": { @@ -32662,7 +33160,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_sql/async/delete/{id}": { @@ -32700,7 +33199,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql/async/{id}": { @@ -32814,7 +33314,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql/async/status/{id}": { @@ -32881,7 +33382,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql": { @@ -32906,7 +33408,8 @@ "200": { "$ref": "#/components/responses/sql.query#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -32929,7 +33432,8 @@ "200": { "$ref": "#/components/responses/sql.query#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_sql/translate": { @@ -32949,7 +33453,8 @@ "200": { "$ref": "#/components/responses/sql.translate#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -32967,7 +33472,8 @@ "200": { "$ref": "#/components/responses/sql.translate#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_ssl/certificates": { @@ -32994,7 +33500,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_synonyms/{id}": { @@ -33066,7 +33573,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -33135,7 +33643,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -33170,7 +33679,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -33218,7 +33728,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -33282,7 +33793,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -33328,7 +33840,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_synonyms": { @@ -33389,7 +33902,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_tasks/_cancel": { @@ -33420,7 +33934,8 @@ "200": { "$ref": "#/components/responses/tasks.cancel#200" } - } + }, + "x-available-since": "2.3.0" } }, "/_tasks/{task_id}/_cancel": { @@ -33454,7 +33969,8 @@ "200": { "$ref": "#/components/responses/tasks.cancel#200" } - } + }, + "x-available-since": "2.3.0" } }, "/_tasks/{task_id}": { @@ -33529,7 +34045,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_tasks": { @@ -33648,7 +34165,8 @@ } } } - } + }, + "x-available-since": "2.3.0" } }, "/{index}/_terms_enum": { @@ -33674,7 +34192,8 @@ "200": { "$ref": "#/components/responses/terms_enum#200" } - } + }, + "x-available-since": "7.14.0" }, "post": { "tags": [ @@ -33698,7 +34217,8 @@ "200": { "$ref": "#/components/responses/terms_enum#200" } - } + }, + "x-available-since": "7.14.0" } }, "/{index}/_termvectors/{id}": { @@ -34217,7 +34737,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_text_structure/test_grok_pattern": { @@ -34242,7 +34763,8 @@ "200": { "$ref": "#/components/responses/text_structure.test_grok_pattern#200" } - } + }, + "x-available-since": "8.13.0" }, "post": { "tags": [ @@ -34265,7 +34787,8 @@ "200": { "$ref": "#/components/responses/text_structure.test_grok_pattern#200" } - } + }, + "x-available-since": "8.13.0" } }, "/_transform/{transform_id}": { @@ -34299,7 +34822,8 @@ "200": { "$ref": "#/components/responses/transform.get_transform#200" } - } + }, + "x-available-since": "7.5.0" }, "put": { "tags": [ @@ -34402,7 +34926,8 @@ } } } - } + }, + "x-available-since": "7.2.0" }, "delete": { "tags": [ @@ -34467,7 +34992,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform": { @@ -34498,7 +35024,8 @@ "200": { "$ref": "#/components/responses/transform.get_transform#200" } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -34590,7 +35117,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -34619,7 +35147,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" }, "post": { "tags": [ @@ -34646,7 +35175,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" } }, "/_transform/_preview": { @@ -34672,7 +35202,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" }, "post": { "tags": [ @@ -34696,7 +35227,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" } }, "/_transform/{transform_id}/_reset": { @@ -34744,7 +35276,8 @@ } } } - } + }, + "x-available-since": "8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -34792,7 +35325,8 @@ } } } - } + }, + "x-available-since": "8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -34850,7 +35384,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -34937,7 +35472,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -35094,7 +35630,8 @@ } } } - } + }, + "x-available-since": "7.2.0" } }, "/_transform/_upgrade": { @@ -35160,7 +35697,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/{index}/_update/{id}": { @@ -35790,7 +36328,8 @@ } } } - } + }, + "x-available-since": "2.4.0" } }, "/_update_by_query/{task_id}/_rethrottle": { @@ -35848,7 +36387,8 @@ } } } - } + }, + "x-available-since": "6.5.0" } }, "/_watcher/watch/{watch_id}/_ack": { @@ -36086,7 +36626,8 @@ } } } - } + }, + "x-available-since": "5.6.0" }, "put": { "tags": [ @@ -36333,7 +36874,8 @@ "200": { "$ref": "#/components/responses/watcher.query_watches#200" } - } + }, + "x-available-since": "7.11.0" }, "post": { "tags": [ @@ -36351,7 +36893,8 @@ "200": { "$ref": "#/components/responses/watcher.query_watches#200" } - } + }, + "x-available-since": "7.11.0" } }, "/_watcher/_start": { @@ -36400,7 +36943,8 @@ "200": { "$ref": "#/components/responses/watcher.stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_watcher/stats/{metric}": { @@ -36428,7 +36972,8 @@ "200": { "$ref": "#/components/responses/watcher.stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_watcher/_stop": { @@ -37085,6 +37630,7 @@ "$ref": "#/components/schemas/cluster.allocation_explain:UnassignedInformation" }, "note": { + "x-available-since": "7.14.0", "type": "string" } }, @@ -39355,6 +39901,7 @@ }, "encoded": { "description": "API key credentials which is the base64-encoding of\nthe UTF-8 representation of `id` and `api_key` joined\nby a colon (`:`).", + "x-available-since": "7.16.0", "type": "string" } }, @@ -39821,6 +40368,7 @@ "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": { @@ -49475,6 +50023,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -50600,6 +51149,7 @@ }, "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" @@ -51253,6 +51803,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -57683,6 +58234,7 @@ "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" @@ -57693,6 +58245,7 @@ "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" @@ -60725,6 +61278,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nDefault is `false` which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" } }, @@ -61255,6 +61809,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the regular expression value with the indexed field values when set to `true`.\nWhen `false`, case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" }, "flags": { @@ -61790,6 +62345,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-available-since": "8.15.0", "type": "boolean" }, "pruning_config": { @@ -61851,6 +62407,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nWhen `false`, the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" } }, @@ -61960,6 +62517,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" }, "rewrite": { @@ -67417,6 +67975,7 @@ "type": "string" }, "type": { + "x-available-since": "8.0.0", "type": "string" } } @@ -74423,6 +74982,7 @@ ] }, "null_value": { + "x-available-since": "7.15.0", "type": "string" } }, @@ -75762,6 +76322,7 @@ }, "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" } } @@ -76869,6 +77430,7 @@ }, "script_count": { "description": "The number of fields that declare a script.", + "x-available-since": "7.13.0", "type": "number" } }, @@ -77466,6 +78028,7 @@ "type": "number" }, "data_frozen": { + "x-available-since": "7.13.0", "type": "number" }, "data_hot": { @@ -77818,6 +78381,7 @@ "properties": { "adjusted_total_in_bytes": { "description": "Total amount, in bytes, of memory across all selected nodes, but using the value specified using the `es.total_memory_bytes` system property instead of measured total memory for those nodes where that system property was set.", + "x-available-since": "7.16.0", "type": "number" }, "free_in_bytes": { @@ -79534,6 +80098,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", + "x-available-since": "8.0.0", "type": "boolean" }, "time_series_metric": { @@ -79541,6 +80106,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-available-since": "8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -79548,6 +80114,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-available-since": "8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -79652,6 +80219,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -81482,6 +82050,7 @@ }, "system": { "description": "If `true`, the data stream is created and managed by an Elastic stack component and cannot be modified through normal user interaction.", + "x-available-since": "7.10.0", "type": "boolean" }, "template": { @@ -83104,6 +83673,7 @@ "$ref": "#/components/schemas/_types:BulkStats" }, "shards": { + "x-available-since": "7.15.0", "type": "object", "additionalProperties": { "type": "object" @@ -87470,6 +88040,7 @@ "$ref": "#/components/schemas/_types:NodeRoles" }, "external_id": { + "x-available-since": "8.3.0", "type": "string" } }, @@ -88357,6 +88928,7 @@ "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": { @@ -95307,6 +95879,7 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", + "x-available-since": "8.14.0", "type": "string" }, "username": { @@ -95314,6 +95887,7 @@ }, "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": { @@ -95328,6 +95902,7 @@ }, "limited_by": { "description": "The owner user’s permissions associated with the API key.\nIt is a point-in-time snapshot captured at creation and subsequent updates.\nAn API key’s effective permissions are an intersection of its assigned privileges and the owner user’s permissions.", + "x-available-since": "8.5.0", "type": "array", "items": { "type": "object", @@ -95707,6 +96282,7 @@ "$ref": "#/components/schemas/_types:Name" }, "type": { + "x-available-since": "7.14.0", "type": "string" } }, @@ -95858,6 +96434,7 @@ } }, "global": { + "x-available-since": "8.0.0", "type": "object", "additionalProperties": { "type": "object", @@ -97252,6 +97829,7 @@ } }, "index_details": { + "x-available-since": "7.13.0", "type": "object", "additionalProperties": { "$ref": "#/components/schemas/snapshot._types:IndexDetails" @@ -98434,6 +99012,7 @@ }, "unattended": { "description": "If `true`, the transform runs in unattended mode. In unattended mode, the transform retries indefinitely in case\nof an error which means the transform never fails. Setting the number of retries other than infinite fails in\nvalidation.", + "x-available-since": "8.5.0", "type": "boolean" } } diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 0e0aa1b305..591c2c7de1 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -74,7 +74,8 @@ } } } - } + }, + "x-available-since": "7.7.0" }, "delete": { "tags": [ @@ -110,7 +111,8 @@ } } } - } + }, + "x-available-since": "7.7.0" } }, "/_async_search/status/{id}": { @@ -148,7 +150,8 @@ } } } - } + }, + "x-available-since": "7.11.0" } }, "/_async_search": { @@ -309,7 +312,8 @@ "200": { "$ref": "#/components/responses/async_search.submit#200" } - } + }, + "x-available-since": "7.7.0" } }, "/{index}/_async_search": { @@ -473,7 +477,8 @@ "200": { "$ref": "#/components/responses/async_search.submit#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_bulk": { @@ -742,7 +747,8 @@ "200": { "$ref": "#/components/responses/cat.component_templates#200" } - } + }, + "x-available-since": "5.1.0" } }, "/_cat/component_templates/{name}": { @@ -765,7 +771,8 @@ "200": { "$ref": "#/components/responses/cat.component_templates#200" } - } + }, + "x-available-since": "5.1.0" } }, "/_cat/count": { @@ -947,7 +954,8 @@ "200": { "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/data_frame/analytics/{id}": { @@ -985,7 +993,8 @@ "200": { "$ref": "#/components/responses/cat.ml_data_frame_analytics#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/datafeeds": { @@ -1017,7 +1026,8 @@ "200": { "$ref": "#/components/responses/cat.ml_datafeeds#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/datafeeds/{datafeed_id}": { @@ -1052,7 +1062,8 @@ "200": { "$ref": "#/components/responses/cat.ml_datafeeds#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/anomaly_detectors": { @@ -1087,7 +1098,8 @@ "200": { "$ref": "#/components/responses/cat.ml_jobs#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/anomaly_detectors/{job_id}": { @@ -1125,7 +1137,8 @@ "200": { "$ref": "#/components/responses/cat.ml_jobs#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/trained_models": { @@ -1163,7 +1176,8 @@ "200": { "$ref": "#/components/responses/cat.ml_trained_models#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/ml/trained_models/{model_id}": { @@ -1204,7 +1218,8 @@ "200": { "$ref": "#/components/responses/cat.ml_trained_models#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/transforms": { @@ -1242,7 +1257,8 @@ "200": { "$ref": "#/components/responses/cat.transforms#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_cat/transforms/{transform_id}": { @@ -1283,7 +1299,8 @@ "200": { "$ref": "#/components/responses/cat.transforms#200" } - } + }, + "x-available-since": "7.7.0" } }, "/_search/scroll": { @@ -1503,7 +1520,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_component_template/{name}": { @@ -1537,7 +1555,8 @@ "200": { "$ref": "#/components/responses/cluster.get_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "put": { "tags": [ @@ -1567,7 +1586,8 @@ "200": { "$ref": "#/components/responses/cluster.put_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "post": { "tags": [ @@ -1597,7 +1617,8 @@ "200": { "$ref": "#/components/responses/cluster.put_component_template#200" } - } + }, + "x-available-since": "7.8.0" }, "delete": { "tags": [ @@ -1653,7 +1674,8 @@ } } } - } + }, + "x-available-since": "7.8.0" }, "head": { "tags": [ @@ -1704,7 +1726,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.8.0" } }, "/_component_template": { @@ -1735,7 +1758,8 @@ "200": { "$ref": "#/components/responses/cluster.get_component_template#200" } - } + }, + "x-available-since": "7.8.0" } }, "/_info/{target}": { @@ -1795,7 +1819,8 @@ } } } - } + }, + "x-available-since": "8.9.0" } }, "/_connector/{connector_id}/_check_in": { @@ -1840,7 +1865,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}": { @@ -1877,7 +1903,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "put": { "tags": [ @@ -1900,7 +1927,8 @@ "200": { "$ref": "#/components/responses/connector.put#200" } - } + }, + "x-available-since": "8.12.0" }, "delete": { "tags": [ @@ -1946,7 +1974,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_last_sync": { @@ -2057,7 +2086,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector": { @@ -2158,7 +2188,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "put": { "tags": [ @@ -2176,7 +2207,8 @@ "200": { "$ref": "#/components/responses/connector.put#200" } - } + }, + "x-available-since": "8.12.0" }, "post": { "tags": [ @@ -2245,7 +2277,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}/_cancel": { @@ -2290,7 +2323,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job/{connector_sync_job_id}": { @@ -2327,7 +2361,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "delete": { "tags": [ @@ -2362,7 +2397,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/_sync_job": { @@ -2456,7 +2492,8 @@ } } } - } + }, + "x-available-since": "8.12.0" }, "post": { "tags": [ @@ -2510,7 +2547,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering/_activate": { @@ -2555,7 +2593,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_api_key_id": { @@ -2632,7 +2671,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_configuration": { @@ -2698,7 +2738,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_error": { @@ -2768,7 +2809,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering": { @@ -2840,7 +2882,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_filtering/_validation": { @@ -2903,7 +2946,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_index_name": { @@ -2973,7 +3017,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_name": { @@ -3039,7 +3084,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_native": { @@ -3102,7 +3148,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_pipeline": { @@ -3165,7 +3212,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_scheduling": { @@ -3228,7 +3276,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_service_type": { @@ -3291,7 +3340,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_connector/{connector_id}/_status": { @@ -3354,7 +3404,8 @@ } } } - } + }, + "x-available-since": "8.12.0" } }, "/_count": { @@ -3662,7 +3713,8 @@ "200": { "$ref": "#/components/responses/create#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -3710,7 +3762,8 @@ "200": { "$ref": "#/components/responses/create#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{index}/_doc/{id}": { @@ -4654,7 +4707,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_scripts/{id}": { @@ -4851,7 +4905,8 @@ "200": { "$ref": "#/components/responses/enrich.get_policy#200" } - } + }, + "x-available-since": "7.5.0" }, "put": { "tags": [ @@ -4907,7 +4962,8 @@ } } } - } + }, + "x-available-since": "7.5.0" }, "delete": { "tags": [ @@ -4942,7 +4998,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/policy/{name}/_execute": { @@ -4997,7 +5054,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/policy": { @@ -5014,7 +5072,8 @@ "200": { "$ref": "#/components/responses/enrich.get_policy#200" } - } + }, + "x-available-since": "7.5.0" } }, "/_enrich/_stats": { @@ -5051,6 +5110,7 @@ }, "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" @@ -5065,7 +5125,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_eql/search/{id}": { @@ -5122,7 +5183,8 @@ } } } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -5158,7 +5220,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_eql/search/status/{id}": { @@ -5223,7 +5286,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/{index}/_eql/search": { @@ -5266,7 +5330,8 @@ "200": { "$ref": "#/components/responses/eql.search#200" } - } + }, + "x-available-since": "7.9.0" }, "post": { "tags": [ @@ -5307,7 +5372,8 @@ "200": { "$ref": "#/components/responses/eql.search#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_query": { @@ -5405,7 +5471,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/{index}/_source/{id}": { @@ -5684,7 +5751,8 @@ "application/json": {} } } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_explain/{id}": { @@ -5857,7 +5925,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -5902,7 +5971,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_field_caps": { @@ -5952,7 +6022,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -6000,7 +6071,8 @@ "200": { "$ref": "#/components/responses/field_caps#200" } - } + }, + "x-available-since": "5.4.0" } }, "/{index}/_graph/explore": { @@ -6236,7 +6308,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_analyze": { @@ -6752,7 +6825,8 @@ "200": { "$ref": "#/components/responses/indices.get_data_stream#200" } - } + }, + "x-available-since": "7.9.0" }, "put": { "tags": [ @@ -6788,7 +6862,8 @@ } } } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -6833,7 +6908,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/_stats": { @@ -6855,7 +6931,8 @@ "200": { "$ref": "#/components/responses/indices.data_streams_stats#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/{name}/_stats": { @@ -6880,7 +6957,8 @@ "200": { "$ref": "#/components/responses/indices.data_streams_stats#200" } - } + }, + "x-available-since": "7.9.0" } }, "/{index}/_alias/{name}": { @@ -7208,7 +7286,8 @@ } } } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -7290,7 +7369,8 @@ } } } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -7355,7 +7435,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/_index_template/{name}": { @@ -7390,7 +7471,8 @@ "200": { "$ref": "#/components/responses/indices.get_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "put": { "tags": [ @@ -7423,7 +7505,8 @@ "200": { "$ref": "#/components/responses/indices.put_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "post": { "tags": [ @@ -7456,7 +7539,8 @@ "200": { "$ref": "#/components/responses/indices.put_index_template#200" } - } + }, + "x-available-since": "7.9.0" }, "delete": { "tags": [ @@ -7512,7 +7596,8 @@ } } } - } + }, + "x-available-since": "7.8.0" }, "head": { "tags": [ @@ -7687,7 +7772,8 @@ } } } - } + }, + "x-available-since": "8.11.0" } }, "/_alias": { @@ -7777,7 +7863,8 @@ "200": { "$ref": "#/components/responses/indices.get_data_stream#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_index_template": { @@ -7809,7 +7896,8 @@ "200": { "$ref": "#/components/responses/indices.get_index_template#200" } - } + }, + "x-available-since": "7.9.0" } }, "/_mapping": { @@ -8267,7 +8355,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_data_stream/_modify": { @@ -8313,7 +8402,8 @@ } } } - } + }, + "x-available-since": "7.16.0" } }, "/_template/{name}": { @@ -8578,7 +8668,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/{alias}/_rollover": { @@ -8615,7 +8706,8 @@ "200": { "$ref": "#/components/responses/indices.rollover#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{alias}/_rollover/{new_index}": { @@ -8655,7 +8747,8 @@ "200": { "$ref": "#/components/responses/indices.rollover#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_index_template/_simulate_index/{name}": { @@ -8727,7 +8820,8 @@ } } } - } + }, + "x-available-since": "7.9.0" } }, "/_index_template/_simulate": { @@ -8859,7 +8953,8 @@ } } } - } + }, + "x-available-since": "1.3.0" } }, "/_validate/query": { @@ -8917,7 +9012,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -8973,7 +9069,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_validate/query": { @@ -9034,7 +9131,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -9093,7 +9191,8 @@ "200": { "$ref": "#/components/responses/indices.validate_query#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_inference/{inference_id}": { @@ -9115,7 +9214,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -9138,7 +9238,8 @@ "200": { "$ref": "#/components/responses/inference.put#200" } - } + }, + "x-available-since": "8.11.0" }, "post": { "tags": [ @@ -9164,7 +9265,8 @@ "200": { "$ref": "#/components/responses/inference.inference#200" } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -9190,7 +9292,8 @@ "200": { "$ref": "#/components/responses/inference.delete#200" } - } + }, + "x-available-since": "8.11.0" } }, "/_inference/{task_type}/{inference_id}": { @@ -9215,7 +9318,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" }, "put": { "tags": [ @@ -9241,7 +9345,8 @@ "200": { "$ref": "#/components/responses/inference.put#200" } - } + }, + "x-available-since": "8.11.0" }, "post": { "tags": [ @@ -9270,7 +9375,8 @@ "200": { "$ref": "#/components/responses/inference.inference#200" } - } + }, + "x-available-since": "8.11.0" }, "delete": { "tags": [ @@ -9299,7 +9405,8 @@ "200": { "$ref": "#/components/responses/inference.delete#200" } - } + }, + "x-available-since": "8.11.0" } }, "/_inference": { @@ -9316,7 +9423,8 @@ "200": { "$ref": "#/components/responses/inference.get#200" } - } + }, + "x-available-since": "8.11.0" } }, "/": { @@ -9411,7 +9519,8 @@ "200": { "$ref": "#/components/responses/ingest.get_pipeline#200" } - } + }, + "x-available-since": "5.0.0" }, "put": { "tags": [ @@ -9513,7 +9622,8 @@ } } } - } + }, + "x-available-since": "5.0.0" }, "delete": { "tags": [ @@ -9568,7 +9678,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/pipeline": { @@ -9594,7 +9705,8 @@ "200": { "$ref": "#/components/responses/ingest.get_pipeline#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/processor/grok": { @@ -9630,7 +9742,8 @@ } } } - } + }, + "x-available-since": "6.1.0" } }, "/_ingest/pipeline/_simulate": { @@ -9655,7 +9768,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -9678,7 +9792,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_ingest/pipeline/{id}/_simulate": { @@ -9706,7 +9821,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -9732,7 +9848,8 @@ "200": { "$ref": "#/components/responses/ingest.simulate#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_license": { @@ -9809,7 +9926,8 @@ "200": { "$ref": "#/components/responses/logstash.get_pipeline#200" } - } + }, + "x-available-since": "7.12.0" }, "put": { "tags": [ @@ -9850,7 +9968,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.12.0" }, "delete": { "tags": [ @@ -9881,7 +10000,8 @@ "application/json": {} } } - } + }, + "x-available-since": "7.12.0" } }, "/_logstash/pipeline": { @@ -9898,7 +10018,8 @@ "200": { "$ref": "#/components/responses/logstash.get_pipeline#200" } - } + }, + "x-available-since": "7.12.0" } }, "/_mget": { @@ -9944,7 +10065,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -9988,7 +10110,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_mget": { @@ -10037,7 +10160,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -10084,7 +10208,8 @@ "200": { "$ref": "#/components/responses/mget#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_close": { @@ -10182,7 +10307,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/calendars/{calendar_id}": { @@ -10213,7 +10339,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "put": { "tags": [ @@ -10286,7 +10413,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -10315,7 +10443,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "delete": { "tags": [ @@ -10350,7 +10479,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars/{calendar_id}/events/{event_id}": { @@ -10398,7 +10528,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars/{calendar_id}/jobs/{job_id}": { @@ -10462,7 +10593,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "delete": { "tags": [ @@ -10524,7 +10656,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/data_frame/analytics/{id}": { @@ -10559,7 +10692,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" }, "put": { "tags": [ @@ -10698,7 +10832,8 @@ } } } - } + }, + "x-available-since": "7.3.0" }, "delete": { "tags": [ @@ -10753,7 +10888,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}": { @@ -10782,7 +10918,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeeds#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -10987,7 +11124,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -11032,7 +11170,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/filters/{filter_id}": { @@ -11061,7 +11200,8 @@ "200": { "$ref": "#/components/responses/ml.get_filters#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -11139,7 +11279,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -11175,7 +11316,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/anomaly_detectors/{job_id}": { @@ -11204,7 +11346,8 @@ "200": { "$ref": "#/components/responses/ml.get_jobs#200" } - } + }, + "x-available-since": "5.5.0" }, "put": { "tags": [ @@ -11389,7 +11532,8 @@ } } } - } + }, + "x-available-since": "5.4.0" }, "delete": { "tags": [ @@ -11455,7 +11599,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}": { @@ -11498,7 +11643,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models#200" } - } + }, + "x-available-since": "7.10.0" }, "put": { "tags": [ @@ -11607,7 +11753,8 @@ } } } - } + }, + "x-available-since": "7.10.0" }, "delete": { "tags": [ @@ -11652,7 +11799,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/model_aliases/{model_alias}": { @@ -11711,7 +11859,8 @@ } } } - } + }, + "x-available-since": "7.13.0" }, "delete": { "tags": [ @@ -11758,7 +11907,8 @@ } } } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/anomaly_detectors/_estimate_model_memory": { @@ -11820,7 +11970,8 @@ } } } - } + }, + "x-available-since": "7.7.0" } }, "/_ml/data_frame/_evaluate": { @@ -11881,7 +12032,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_flush": { @@ -12008,7 +12160,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/calendars/{calendar_id}/events": { @@ -12110,7 +12263,8 @@ } } } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -12178,7 +12332,8 @@ } } } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/calendars": { @@ -12206,7 +12361,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -12232,7 +12388,8 @@ "200": { "$ref": "#/components/responses/ml.get_calendars#200" } - } + }, + "x-available-since": "6.2.0" } }, "/_ml/data_frame/analytics": { @@ -12264,7 +12421,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/_stats": { @@ -12295,7 +12453,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/data_frame/analytics/{id}/_stats": { @@ -12329,7 +12488,8 @@ "200": { "$ref": "#/components/responses/ml.get_data_frame_analytics_stats#200" } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stats": { @@ -12355,7 +12515,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeed_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/datafeeds/_stats": { @@ -12378,7 +12539,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeed_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/datafeeds": { @@ -12404,7 +12566,8 @@ "200": { "$ref": "#/components/responses/ml.get_datafeeds#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/filters": { @@ -12430,7 +12593,8 @@ "200": { "$ref": "#/components/responses/ml.get_filters#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/_stats": { @@ -12452,7 +12616,8 @@ "200": { "$ref": "#/components/responses/ml.get_job_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/_stats": { @@ -12477,7 +12642,8 @@ "200": { "$ref": "#/components/responses/ml.get_job_stats#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors": { @@ -12503,7 +12669,8 @@ "200": { "$ref": "#/components/responses/ml.get_jobs#200" } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/anomaly_detectors/{job_id}/results/overall_buckets": { @@ -12550,7 +12717,8 @@ "200": { "$ref": "#/components/responses/ml.get_overall_buckets#200" } - } + }, + "x-available-since": "6.1.0" }, "post": { "tags": [ @@ -12595,7 +12763,8 @@ "200": { "$ref": "#/components/responses/ml.get_overall_buckets#200" } - } + }, + "x-available-since": "6.1.0" } }, "/_ml/trained_models": { @@ -12635,7 +12804,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/_stats": { @@ -12667,7 +12837,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models_stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/_stats": { @@ -12696,7 +12867,8 @@ "200": { "$ref": "#/components/responses/ml.get_trained_models_stats#200" } - } + }, + "x-available-since": "7.10.0" } }, "/_ml/trained_models/{model_id}/_infer": { @@ -12724,7 +12896,8 @@ "200": { "$ref": "#/components/responses/ml.infer_trained_model#200" } - } + }, + "x-available-since": "8.3.0" } }, "/_ml/trained_models/{model_id}/deployment/_infer": { @@ -12752,7 +12925,8 @@ "200": { "$ref": "#/components/responses/ml.infer_trained_model#200" } - } + }, + "x-available-since": "8.3.0" } }, "/_ml/anomaly_detectors/{job_id}/_open": { @@ -12826,7 +13000,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/data_frame/analytics/_preview": { @@ -12846,7 +13021,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" }, "post": { "tags": [ @@ -12864,7 +13040,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/data_frame/analytics/{id}/_preview": { @@ -12889,7 +13066,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" }, "post": { "tags": [ @@ -12912,7 +13090,8 @@ "200": { "$ref": "#/components/responses/ml.preview_data_frame_analytics#200" } - } + }, + "x-available-since": "7.13.0" } }, "/_ml/datafeeds/{datafeed_id}/_preview": { @@ -12944,7 +13123,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -12974,7 +13154,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/datafeeds/_preview": { @@ -13003,7 +13184,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" }, "post": { "tags": [ @@ -13030,7 +13212,8 @@ "200": { "$ref": "#/components/responses/ml.preview_datafeed#200" } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}/definition/{part}": { @@ -13107,7 +13290,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/trained_models/{model_id}/vocabulary": { @@ -13149,6 +13333,7 @@ }, "merges": { "description": "The optional model merges if required by the tokenizer.", + "x-available-since": "8.2.0", "type": "array", "items": { "type": "string" @@ -13156,6 +13341,7 @@ }, "scores": { "description": "The optional vocabulary value scores if required by the tokenizer.", + "x-available-since": "8.9.0", "type": "array", "items": { "type": "number" @@ -13181,7 +13367,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/anomaly_detectors/{job_id}/_reset": { @@ -13239,7 +13426,8 @@ } } } - } + }, + "x-available-since": "7.14.0" } }, "/_ml/data_frame/analytics/{id}/_start": { @@ -13299,7 +13487,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_start": { @@ -13400,7 +13589,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_start": { @@ -13515,7 +13705,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/data_frame/analytics/{id}/_stop": { @@ -13591,7 +13782,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_stop": { @@ -13689,7 +13881,8 @@ } } } - } + }, + "x-available-since": "5.4.0" } }, "/_ml/trained_models/{model_id}/deployment/_stop": { @@ -13754,7 +13947,8 @@ } } } - } + }, + "x-available-since": "8.0.0" } }, "/_ml/data_frame/analytics/{id}/_update": { @@ -13874,7 +14068,8 @@ } } } - } + }, + "x-available-since": "7.3.0" } }, "/_ml/datafeeds/{datafeed_id}/_update": { @@ -14082,7 +14277,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/_ml/filters/{filter_id}/_update": { @@ -14168,7 +14364,8 @@ } } } - } + }, + "x-available-since": "6.4.0" } }, "/_ml/anomaly_detectors/{job_id}/_update": { @@ -14376,7 +14573,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_ml/trained_models/{model_id}/deployment/_update": { @@ -14446,7 +14644,8 @@ } } } - } + }, + "x-available-since": "8.6.0" } }, "/_msearch": { @@ -14504,7 +14703,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -14560,7 +14760,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" } }, "/{index}/_msearch": { @@ -14621,7 +14822,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" }, "post": { "tags": [ @@ -14680,7 +14882,8 @@ "200": { "$ref": "#/components/responses/msearch#200" } - } + }, + "x-available-since": "1.3.0" } }, "/_msearch/template": { @@ -14717,7 +14920,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -14752,7 +14956,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" } }, "/{index}/_msearch/template": { @@ -14792,7 +14997,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" }, "post": { "tags": [ @@ -14830,7 +15036,8 @@ "200": { "$ref": "#/components/responses/msearch_template#200" } - } + }, + "x-available-since": "5.0.0" } }, "/_mtermvectors": { @@ -15161,7 +15368,8 @@ } } } - } + }, + "x-available-since": "7.10.0" } }, "/_scripts/{id}/{context}": { @@ -15275,7 +15483,8 @@ } } } - } + }, + "x-available-since": "8.15.0" }, "put": { "tags": [ @@ -15368,7 +15577,8 @@ } } } - } + }, + "x-available-since": "8.15.0" }, "delete": { "tags": [ @@ -15414,7 +15624,8 @@ } } } - } + }, + "x-available-since": "8.15.0" } }, "/_query_rules/{ruleset_id}": { @@ -15451,7 +15662,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -15522,7 +15734,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -15557,7 +15770,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_query_rules": { @@ -15618,7 +15832,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_rank_eval": { @@ -15652,7 +15867,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -15684,7 +15900,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" } }, "/{index}/_rank_eval": { @@ -15721,7 +15938,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" }, "post": { "tags": [ @@ -15756,7 +15974,8 @@ "200": { "$ref": "#/components/responses/rank_eval#200" } - } + }, + "x-available-since": "6.2.0" } }, "/_reindex": { @@ -15950,7 +16169,8 @@ } } } - } + }, + "x-available-since": "2.3.0" } }, "/_render/template": { @@ -16056,7 +16276,8 @@ "200": { "$ref": "#/components/responses/scripts_painless_execute#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -16074,7 +16295,8 @@ "200": { "$ref": "#/components/responses/scripts_painless_execute#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_search": { @@ -16721,7 +16943,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "put": { "tags": [ @@ -16784,7 +17007,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "delete": { "tags": [ @@ -16819,7 +17043,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/analytics/{name}": { @@ -16841,7 +17066,8 @@ "200": { "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } - } + }, + "x-available-since": "8.8.0" }, "put": { "tags": [ @@ -16876,7 +17102,8 @@ } } } - } + }, + "x-available-since": "8.8.0" }, "delete": { "tags": [ @@ -16911,7 +17138,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/analytics": { @@ -16928,7 +17156,8 @@ "200": { "$ref": "#/components/responses/search_application.get_behavioral_analytics#200" } - } + }, + "x-available-since": "8.8.0" } }, "/_application/search_application": { @@ -16999,7 +17228,8 @@ } } } - } + }, + "x-available-since": "8.8.0" } }, "/_application/search_application/{name}/_search": { @@ -17027,7 +17257,8 @@ "200": { "$ref": "#/components/responses/search_application.search#200" } - } + }, + "x-available-since": "8.8.0" }, "post": { "tags": [ @@ -17053,7 +17284,8 @@ "200": { "$ref": "#/components/responses/search_application.search#200" } - } + }, + "x-available-since": "8.8.0" } }, "/{index}/_mvt/{field}/{zoom}/{x}/{y}": { @@ -17112,7 +17344,8 @@ "200": { "$ref": "#/components/responses/search_mvt#200" } - } + }, + "x-available-since": "7.15.0" }, "post": { "tags": [ @@ -17169,7 +17402,8 @@ "200": { "$ref": "#/components/responses/search_mvt#200" } - } + }, + "x-available-since": "7.15.0" } }, "/_search/template": { @@ -17230,7 +17464,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" }, "post": { "tags": [ @@ -17289,7 +17524,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" } }, "/{index}/_search/template": { @@ -17353,7 +17589,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" }, "post": { "tags": [ @@ -17415,7 +17652,8 @@ "200": { "$ref": "#/components/responses/search_template#200" } - } + }, + "x-available-since": "2.0.0" } }, "/_security/_authenticate": { @@ -17503,7 +17741,8 @@ } } } - } + }, + "x-available-since": "5.5.0" } }, "/_security/api_key": { @@ -17621,7 +17860,8 @@ } } } - } + }, + "x-available-since": "6.7.0" }, "put": { "tags": [ @@ -17645,7 +17885,8 @@ "200": { "$ref": "#/components/responses/security.create_api_key#200" } - } + }, + "x-available-since": "6.7.0" }, "post": { "tags": [ @@ -17669,7 +17910,8 @@ "200": { "$ref": "#/components/responses/security.create_api_key#200" } - } + }, + "x-available-since": "6.7.0" }, "delete": { "tags": [ @@ -17756,7 +17998,8 @@ } } } - } + }, + "x-available-since": "6.7.0" } }, "/_security/user/_has_privileges": { @@ -17776,7 +18019,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "post": { "tags": [ @@ -17794,7 +18038,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/user/{user}/_has_privileges": { @@ -17819,7 +18064,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" }, "post": { "tags": [ @@ -17842,7 +18088,8 @@ "200": { "$ref": "#/components/responses/security.has_privileges#200" } - } + }, + "x-available-since": "6.4.0" } }, "/_security/_query/api_key": { @@ -17874,7 +18121,8 @@ "200": { "$ref": "#/components/responses/security.query_api_keys#200" } - } + }, + "x-available-since": "7.15.0" }, "post": { "tags": [ @@ -17904,7 +18152,8 @@ "200": { "$ref": "#/components/responses/security.query_api_keys#200" } - } + }, + "x-available-since": "7.15.0" } }, "/_security/api_key/{id}": { @@ -17978,7 +18227,8 @@ } } } - } + }, + "x-available-since": "8.4.0" } }, "/_sql/close": { @@ -18029,7 +18279,8 @@ } } } - } + }, + "x-available-since": "6.3.0" } }, "/_sql/async/delete/{id}": { @@ -18067,7 +18318,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql/async/{id}": { @@ -18181,7 +18433,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql/async/status/{id}": { @@ -18248,7 +18501,8 @@ } } } - } + }, + "x-available-since": "7.15.0" } }, "/_sql": { @@ -18273,7 +18527,8 @@ "200": { "$ref": "#/components/responses/sql.query#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -18296,7 +18551,8 @@ "200": { "$ref": "#/components/responses/sql.query#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_sql/translate": { @@ -18316,7 +18572,8 @@ "200": { "$ref": "#/components/responses/sql.translate#200" } - } + }, + "x-available-since": "6.3.0" }, "post": { "tags": [ @@ -18334,7 +18591,8 @@ "200": { "$ref": "#/components/responses/sql.translate#200" } - } + }, + "x-available-since": "6.3.0" } }, "/_synonyms/{id}": { @@ -18406,7 +18664,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -18475,7 +18734,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -18510,7 +18770,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_synonyms/{set_id}/{rule_id}": { @@ -18558,7 +18819,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "put": { "tags": [ @@ -18622,7 +18884,8 @@ } } } - } + }, + "x-available-since": "8.10.0" }, "delete": { "tags": [ @@ -18668,7 +18931,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_synonyms": { @@ -18729,7 +18993,8 @@ } } } - } + }, + "x-available-since": "8.10.0" } }, "/_tasks/{task_id}": { @@ -18804,7 +19069,8 @@ } } } - } + }, + "x-available-since": "5.0.0" } }, "/{index}/_terms_enum": { @@ -18830,7 +19096,8 @@ "200": { "$ref": "#/components/responses/terms_enum#200" } - } + }, + "x-available-since": "7.14.0" }, "post": { "tags": [ @@ -18854,7 +19121,8 @@ "200": { "$ref": "#/components/responses/terms_enum#200" } - } + }, + "x-available-since": "7.14.0" } }, "/{index}/_termvectors/{id}": { @@ -19122,7 +19390,8 @@ "200": { "$ref": "#/components/responses/transform.get_transform#200" } - } + }, + "x-available-since": "7.5.0" }, "put": { "tags": [ @@ -19225,7 +19494,8 @@ } } } - } + }, + "x-available-since": "7.2.0" }, "delete": { "tags": [ @@ -19290,7 +19560,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform": { @@ -19321,7 +19592,8 @@ "200": { "$ref": "#/components/responses/transform.get_transform#200" } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_stats": { @@ -19413,7 +19685,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_preview": { @@ -19442,7 +19715,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" }, "post": { "tags": [ @@ -19469,7 +19743,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" } }, "/_transform/_preview": { @@ -19495,7 +19770,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" }, "post": { "tags": [ @@ -19519,7 +19795,8 @@ "200": { "$ref": "#/components/responses/transform.preview_transform#200" } - } + }, + "x-available-since": "7.2.0" } }, "/_transform/{transform_id}/_reset": { @@ -19567,7 +19844,8 @@ } } } - } + }, + "x-available-since": "8.1.0" } }, "/_transform/{transform_id}/_schedule_now": { @@ -19615,7 +19893,8 @@ } } } - } + }, + "x-available-since": "8.7.0" } }, "/_transform/{transform_id}/_start": { @@ -19673,7 +19952,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_stop": { @@ -19760,7 +20040,8 @@ } } } - } + }, + "x-available-since": "7.5.0" } }, "/_transform/{transform_id}/_update": { @@ -19917,7 +20198,8 @@ } } } - } + }, + "x-available-since": "7.2.0" } }, "/{index}/_update/{id}": { @@ -20547,7 +20829,8 @@ } } } - } + }, + "x-available-since": "2.4.0" } } }, @@ -22016,6 +22299,7 @@ }, "encoded": { "description": "API key credentials which is the base64-encoding of\nthe UTF-8 representation of `id` and `api_key` joined\nby a colon (`:`).", + "x-available-since": "7.16.0", "type": "string" } }, @@ -27521,6 +27805,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -28706,6 +28991,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -34621,6 +34907,7 @@ "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" @@ -34631,6 +34918,7 @@ "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" @@ -37663,6 +37951,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nDefault is `false` which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" } }, @@ -38193,6 +38482,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the regular expression value with the indexed field values when set to `true`.\nWhen `false`, case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" }, "flags": { @@ -38728,6 +39018,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-available-since": "8.15.0", "type": "boolean" }, "pruning_config": { @@ -38789,6 +39080,7 @@ }, "case_insensitive": { "description": "Allows ASCII case insensitive matching of the value with the indexed field values when set to `true`.\nWhen `false`, the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" } }, @@ -38898,6 +39190,7 @@ "properties": { "case_insensitive": { "description": "Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.", + "x-available-since": "7.10.0", "type": "boolean" }, "rewrite": { @@ -43942,6 +44235,7 @@ "type": "string" }, "type": { + "x-available-since": "8.0.0", "type": "string" } } @@ -48982,6 +49276,7 @@ ] }, "null_value": { + "x-available-since": "7.15.0", "type": "string" } }, @@ -50321,6 +50616,7 @@ }, "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" } } @@ -52067,6 +52363,7 @@ }, "time_series_dimension": { "description": "Whether this field is used as a time series dimension.", + "x-available-since": "8.0.0", "type": "boolean" }, "time_series_metric": { @@ -52074,6 +52371,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-available-since": "8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -52081,6 +52379,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-available-since": "8.0.0", "type": "array", "items": { "$ref": "#/components/schemas/_types:IndexName" @@ -52705,6 +53004,7 @@ }, "system": { "description": "If `true`, the data stream is created and managed by an Elastic stack component and cannot be modified through normal user interaction.", + "x-available-since": "7.10.0", "type": "boolean" }, "template": { @@ -57474,6 +57774,7 @@ "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": { @@ -59481,6 +59782,7 @@ }, "knn": { "description": "Defines the approximate kNN search to run.", + "x-available-since": "8.4.0", "oneOf": [ { "$ref": "#/components/schemas/_types:KnnSearch" @@ -60821,6 +61123,7 @@ }, "realm_type": { "description": "Realm type of the principal for which this API key was created", + "x-available-since": "8.14.0", "type": "string" }, "username": { @@ -60828,6 +61131,7 @@ }, "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": { @@ -60842,6 +61146,7 @@ }, "limited_by": { "description": "The owner user’s permissions associated with the API key.\nIt is a point-in-time snapshot captured at creation and subsequent updates.\nAn API key’s effective permissions are an intersection of its assigned privileges and the owner user’s permissions.", + "x-available-since": "8.5.0", "type": "array", "items": { "type": "object", @@ -61130,6 +61435,7 @@ "$ref": "#/components/schemas/_types:Name" }, "type": { + "x-available-since": "7.14.0", "type": "string" } }, @@ -61737,6 +62043,7 @@ }, "unattended": { "description": "If `true`, the transform runs in unattended mode. In unattended mode, the transform retries indefinitely in case\nof an error which means the transform never fails. Setting the number of retries other than infinite fails in\nvalidation.", + "x-available-since": "8.5.0", "type": "boolean" } } diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index 83ce997d41..d5cfc28ed8 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -167,7 +167,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -214,7 +213,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -309,7 +307,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -357,7 +354,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -393,7 +389,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -684,7 +679,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1935,7 +1929,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2020,7 +2013,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2093,7 +2085,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2495,7 +2486,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2565,7 +2555,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2657,7 +2646,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2692,7 +2680,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2727,7 +2714,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2762,7 +2748,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2802,7 +2787,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2882,7 +2866,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2929,7 +2912,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3060,7 +3042,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3095,7 +3076,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3252,7 +3232,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3287,7 +3266,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3328,7 +3306,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3398,7 +3375,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3439,7 +3415,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3620,7 +3595,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3661,7 +3635,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3799,7 +3772,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3919,7 +3891,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -3958,7 +3929,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4007,7 +3977,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4046,7 +4015,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4207,7 +4175,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4521,7 +4488,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4753,7 +4719,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7362,7 +7327,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7452,7 +7416,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7487,7 +7450,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7873,7 +7835,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7958,7 +7919,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8008,7 +7968,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -9288,7 +9247,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -9783,7 +9741,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, diff --git a/output/schema/schema.json b/output/schema/schema.json index bab7203707..74c7f33f3f 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -451,7 +451,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -523,7 +522,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -571,7 +569,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -666,7 +663,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -714,7 +710,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -762,7 +757,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -804,7 +798,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -840,7 +833,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -891,7 +883,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1125,7 +1116,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1167,7 +1157,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1209,7 +1198,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1251,7 +1239,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1293,7 +1280,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1386,7 +1372,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1437,7 +1422,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -1626,7 +1610,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2156,7 +2139,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2441,7 +2423,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2566,7 +2547,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -2684,7 +2664,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4089,7 +4068,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4267,7 +4245,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4375,7 +4352,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4830,7 +4806,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -4900,7 +4875,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5266,7 +5240,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5301,7 +5274,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5332,7 +5304,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5363,7 +5334,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5398,7 +5368,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5433,7 +5402,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5895,7 +5863,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -5975,7 +5942,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6022,7 +5988,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6098,7 +6063,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6134,7 +6098,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6265,7 +6228,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6300,7 +6262,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6453,7 +6414,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6569,7 +6529,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6604,7 +6563,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6645,7 +6603,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6676,7 +6633,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6786,7 +6742,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6871,7 +6826,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -6912,7 +6866,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7042,7 +6995,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7130,7 +7082,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7171,7 +7122,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7227,7 +7177,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7346,7 +7295,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7412,7 +7360,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7532,7 +7479,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7571,7 +7517,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7620,7 +7565,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7659,7 +7603,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7700,7 +7643,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7886,7 +7828,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -7923,7 +7864,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8038,7 +7978,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8482,7 +8421,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8785,7 +8723,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8820,7 +8757,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -8913,7 +8849,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -12680,7 +12615,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -12808,7 +12742,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -12950,7 +12883,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -13126,7 +13058,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -13270,7 +13201,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -13691,7 +13621,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -14049,7 +13978,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -14099,7 +14027,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -14534,7 +14461,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -14956,7 +14882,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15077,7 +15002,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15112,7 +15036,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15147,7 +15070,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15254,7 +15176,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15331,7 +15252,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15432,7 +15352,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15463,7 +15382,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15536,7 +15454,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -15809,7 +15726,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -16050,7 +15966,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -16504,7 +16419,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -16583,7 +16497,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -17784,7 +17697,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -18747,7 +18659,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19441,7 +19352,6 @@ "visibility": "public" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19548,7 +19458,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19587,7 +19496,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19619,7 +19527,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19651,7 +19558,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19682,7 +19588,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19788,7 +19693,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19858,7 +19762,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19926,7 +19829,6 @@ { "availability": { "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -19989,7 +19891,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, @@ -20030,7 +19931,6 @@ "visibility": "private" }, "stack": { - "since": "0.0.0", "stability": "stable" } }, diff --git a/specification/_global/bulk/BulkRequest.ts b/specification/_global/bulk/BulkRequest.ts index e03923ab3b..850bb4defa 100644 --- a/specification/_global/bulk/BulkRequest.ts +++ b/specification/_global/bulk/BulkRequest.ts @@ -33,7 +33,7 @@ import { SourceConfigParam } from '@global/search/_types/SourceFilter' * Performs multiple indexing or delete operations in a single API call. * This reduces overhead and can greatly increase indexing speed. * @rest_spec_name bulk - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id docs-bulk * diff --git a/specification/_global/clear_scroll/ClearScrollRequest.ts b/specification/_global/clear_scroll/ClearScrollRequest.ts index 961cace969..fd3a31f4ba 100644 --- a/specification/_global/clear_scroll/ClearScrollRequest.ts +++ b/specification/_global/clear_scroll/ClearScrollRequest.ts @@ -23,7 +23,7 @@ import { Ids, ScrollIds } from '@_types/common' /** * Clears the search context and results for a scrolling search. * @rest_spec_name clear_scroll - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id clear-scroll-api */ diff --git a/specification/_global/count/CountRequest.ts b/specification/_global/count/CountRequest.ts index 7872f08567..1bebd0c980 100644 --- a/specification/_global/count/CountRequest.ts +++ b/specification/_global/count/CountRequest.ts @@ -25,7 +25,7 @@ import { Operator } from '@_types/query_dsl/Operator' /** * @rest_spec_name count - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/delete/DeleteRequest.ts b/specification/_global/delete/DeleteRequest.ts index c311a6a29e..e6b97879bb 100644 --- a/specification/_global/delete/DeleteRequest.ts +++ b/specification/_global/delete/DeleteRequest.ts @@ -34,7 +34,7 @@ import { Duration } from '@_types/Time' /** * Removes a JSON document from the specified index. * @rest_spec_name delete - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/delete_script/DeleteScriptRequest.ts b/specification/_global/delete_script/DeleteScriptRequest.ts index 63b4e94185..024f6dd836 100644 --- a/specification/_global/delete_script/DeleteScriptRequest.ts +++ b/specification/_global/delete_script/DeleteScriptRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Deletes a stored script or search template. * @rest_spec_name delete_script - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/exists/DocumentExistsRequest.ts b/specification/_global/exists/DocumentExistsRequest.ts index b708d644f7..0fe875864e 100644 --- a/specification/_global/exists/DocumentExistsRequest.ts +++ b/specification/_global/exists/DocumentExistsRequest.ts @@ -31,7 +31,7 @@ import { SourceConfigParam } from '@global/search/_types/SourceFilter' /** * Checks if a document in an index exists. * @rest_spec_name exists - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/explain/ExplainRequest.ts b/specification/_global/explain/ExplainRequest.ts index 74da9691eb..7a3098cf91 100644 --- a/specification/_global/explain/ExplainRequest.ts +++ b/specification/_global/explain/ExplainRequest.ts @@ -26,7 +26,7 @@ import { Operator } from '@_types/query_dsl/Operator' /** * Returns information about why a specific document matches (or doesn’t match) a query. * @rest_spec_name explain - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/get/GetRequest.ts b/specification/_global/get/GetRequest.ts index cd0d59cf24..0365a64d6a 100644 --- a/specification/_global/get/GetRequest.ts +++ b/specification/_global/get/GetRequest.ts @@ -30,7 +30,7 @@ import { SourceConfigParam } from '@global/search/_types/SourceFilter' /** * @rest_spec_name get - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/get_script/GetScriptRequest.ts b/specification/_global/get_script/GetScriptRequest.ts index 3f4010ab94..2b02ba02d4 100644 --- a/specification/_global/get_script/GetScriptRequest.ts +++ b/specification/_global/get_script/GetScriptRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Retrieves a stored script or search template. * @rest_spec_name get_script - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/get_script_context/GetScriptContextRequest.ts b/specification/_global/get_script_context/GetScriptContextRequest.ts index 13352262d1..6ba1361ed4 100644 --- a/specification/_global/get_script_context/GetScriptContextRequest.ts +++ b/specification/_global/get_script_context/GetScriptContextRequest.ts @@ -21,6 +21,6 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name get_script_context - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase {} diff --git a/specification/_global/get_script_languages/GetScriptLanguagesRequest.ts b/specification/_global/get_script_languages/GetScriptLanguagesRequest.ts index 9e37317820..67f459b545 100644 --- a/specification/_global/get_script_languages/GetScriptLanguagesRequest.ts +++ b/specification/_global/get_script_languages/GetScriptLanguagesRequest.ts @@ -21,6 +21,6 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name get_script_languages - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase {} diff --git a/specification/_global/get_source/SourceRequest.ts b/specification/_global/get_source/SourceRequest.ts index 446672c38b..dc96afdb40 100644 --- a/specification/_global/get_source/SourceRequest.ts +++ b/specification/_global/get_source/SourceRequest.ts @@ -30,7 +30,7 @@ import { SourceConfigParam } from '@global/search/_types/SourceFilter' /** * @rest_spec_name get_source - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/index/IndexRequest.ts b/specification/_global/index/IndexRequest.ts index 0dac654546..d6bd51a8c3 100644 --- a/specification/_global/index/IndexRequest.ts +++ b/specification/_global/index/IndexRequest.ts @@ -36,7 +36,7 @@ import { Duration } from '@_types/Time' * Adds a JSON document to the specified data stream or index and makes it searchable. * If the target is an index and the document already exists, the request updates the document and increments its version. * @rest_spec_name index - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/info/RootNodeInfoRequest.ts b/specification/_global/info/RootNodeInfoRequest.ts index c25c554d9c..ec501a206c 100644 --- a/specification/_global/info/RootNodeInfoRequest.ts +++ b/specification/_global/info/RootNodeInfoRequest.ts @@ -21,7 +21,7 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name info - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase {} diff --git a/specification/_global/mtermvectors/MultiTermVectorsRequest.ts b/specification/_global/mtermvectors/MultiTermVectorsRequest.ts index a1c15f7aa9..e5a4e8d573 100644 --- a/specification/_global/mtermvectors/MultiTermVectorsRequest.ts +++ b/specification/_global/mtermvectors/MultiTermVectorsRequest.ts @@ -30,7 +30,7 @@ import { Operation } from './types' /** * @rest_spec_name mtermvectors - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/ping/PingRequest.ts b/specification/_global/ping/PingRequest.ts index 5404458900..442050cff8 100644 --- a/specification/_global/ping/PingRequest.ts +++ b/specification/_global/ping/PingRequest.ts @@ -21,7 +21,7 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name ping - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase {} diff --git a/specification/_global/put_script/PutScriptRequest.ts b/specification/_global/put_script/PutScriptRequest.ts index e1bf89bc60..850f4d47b4 100644 --- a/specification/_global/put_script/PutScriptRequest.ts +++ b/specification/_global/put_script/PutScriptRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' /** * Creates or updates a stored script or search template. * @rest_spec_name put_script - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/render_search_template/RenderSearchTemplateRequest.ts b/specification/_global/render_search_template/RenderSearchTemplateRequest.ts index 3f388e0b1c..4d4f923868 100644 --- a/specification/_global/render_search_template/RenderSearchTemplateRequest.ts +++ b/specification/_global/render_search_template/RenderSearchTemplateRequest.ts @@ -25,7 +25,7 @@ import { Id } from '@_types/common' /** * Renders a search template as a search request body. * @rest_spec_name render_search_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/scroll/ScrollRequest.ts b/specification/_global/scroll/ScrollRequest.ts index 41721f2ef4..85c85bf6b6 100644 --- a/specification/_global/scroll/ScrollRequest.ts +++ b/specification/_global/scroll/ScrollRequest.ts @@ -23,7 +23,7 @@ import { Duration } from '@_types/Time' /** * @rest_spec_name scroll - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/search/SearchRequest.ts b/specification/_global/search/SearchRequest.ts index 225b109e20..e9dd15f662 100644 --- a/specification/_global/search/SearchRequest.ts +++ b/specification/_global/search/SearchRequest.ts @@ -56,7 +56,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue' * You can provide search queries using the `q` query string parameter or the request body. * If both are specified, only the query parameter is used. * @rest_spec_name search - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @index_privileges read */ diff --git a/specification/_global/search_shards/SearchShardsRequest.ts b/specification/_global/search_shards/SearchShardsRequest.ts index 4094b20390..c41937f824 100644 --- a/specification/_global/search_shards/SearchShardsRequest.ts +++ b/specification/_global/search_shards/SearchShardsRequest.ts @@ -22,7 +22,7 @@ import { ExpandWildcards, Indices, Routing } from '@_types/common' /** * @rest_spec_name search_shards - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/_global/termvectors/TermVectorsRequest.ts b/specification/_global/termvectors/TermVectorsRequest.ts index 9c61a50778..d9f5671b96 100644 --- a/specification/_global/termvectors/TermVectorsRequest.ts +++ b/specification/_global/termvectors/TermVectorsRequest.ts @@ -32,7 +32,7 @@ import { Filter } from './types' /** * @rest_spec_name termvectors - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/_global/update/UpdateRequest.ts b/specification/_global/update/UpdateRequest.ts index 90c6a48eaa..68aec710e0 100644 --- a/specification/_global/update/UpdateRequest.ts +++ b/specification/_global/update/UpdateRequest.ts @@ -37,7 +37,7 @@ import { Duration } from '@_types/Time' /** * @rest_spec_name update - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/cat/aliases/CatAliasesRequest.ts b/specification/cat/aliases/CatAliasesRequest.ts index f9f23c9c7a..16b7e744d4 100644 --- a/specification/cat/aliases/CatAliasesRequest.ts +++ b/specification/cat/aliases/CatAliasesRequest.ts @@ -25,7 +25,7 @@ import { ExpandWildcards, Names } from '@_types/common' * The API does not return data stream aliases. * IMPORTANT: cat APIs are only intended for human consumption using the command line or the Kibana console. They are not intended for use by applications. For application consumption, use the aliases API. * @rest_spec_name cat.aliases - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id cat-alias * @index_privileges view_index_metadata diff --git a/specification/cat/allocation/CatAllocationRequest.ts b/specification/cat/allocation/CatAllocationRequest.ts index 889931e440..a118a402fa 100644 --- a/specification/cat/allocation/CatAllocationRequest.ts +++ b/specification/cat/allocation/CatAllocationRequest.ts @@ -24,7 +24,7 @@ import { Bytes, NodeIds } from '@_types/common' * Provides a snapshot of the number of shards allocated to each data node and their disk space. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. * @rest_spec_name cat.allocation - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-allocation * @cluster_privileges monitor diff --git a/specification/cat/count/CatCountRequest.ts b/specification/cat/count/CatCountRequest.ts index 6a016af051..4de33ef923 100644 --- a/specification/cat/count/CatCountRequest.ts +++ b/specification/cat/count/CatCountRequest.ts @@ -26,7 +26,7 @@ import { Indices } from '@_types/common' * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. * They are not intended for use by applications. For application consumption, use the count API. * @rest_spec_name cat.count - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id cat-count * @index_privileges read diff --git a/specification/cat/fielddata/CatFielddataRequest.ts b/specification/cat/fielddata/CatFielddataRequest.ts index b82c823bd6..b237d06c84 100644 --- a/specification/cat/fielddata/CatFielddataRequest.ts +++ b/specification/cat/fielddata/CatFielddataRequest.ts @@ -25,7 +25,7 @@ import { Bytes, Fields } from '@_types/common' * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. * They are not intended for use by applications. For application consumption, use the nodes stats API. * @rest_spec_name cat.fielddata - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-fielddata * @cluster_privileges monitor diff --git a/specification/cat/health/CatHealthRequest.ts b/specification/cat/health/CatHealthRequest.ts index 318dc19c7a..6cd4151681 100644 --- a/specification/cat/health/CatHealthRequest.ts +++ b/specification/cat/health/CatHealthRequest.ts @@ -32,7 +32,7 @@ import { TimeUnit } from '@_types/Time' * You can use the cat health API to verify cluster health across multiple nodes. * You also can use the API to track the recovery of a large cluster over a longer period of time. * @rest_spec_name cat.health - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-health * @cluster_privileges monitor diff --git a/specification/cat/help/CatHelpRequest.ts b/specification/cat/help/CatHelpRequest.ts index dbee5c5cc8..5d57071f6e 100644 --- a/specification/cat/help/CatHelpRequest.ts +++ b/specification/cat/help/CatHelpRequest.ts @@ -21,7 +21,7 @@ import { CatRequestBase } from '@cat/_types/CatBase' /** * @rest_spec_name cat.help - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id cat */ diff --git a/specification/cat/indices/CatIndicesRequest.ts b/specification/cat/indices/CatIndicesRequest.ts index 4481e00271..9099598778 100644 --- a/specification/cat/indices/CatIndicesRequest.ts +++ b/specification/cat/indices/CatIndicesRequest.ts @@ -29,7 +29,7 @@ import { TimeUnit } from '@_types/Time' * These metrics are retrieved directly from Lucene, which Elasticsearch uses internally to power indexing and search. As a result, all document counts include hidden nested documents. * To get an accurate count of Elasticsearch documents, use the cat count or count APIs. * @rest_spec_name cat.indices - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @doc_id cat-indices * @cluster_privileges monitor diff --git a/specification/cat/master/CatMasterRequest.ts b/specification/cat/master/CatMasterRequest.ts index d2e0473629..9085a4cc84 100644 --- a/specification/cat/master/CatMasterRequest.ts +++ b/specification/cat/master/CatMasterRequest.ts @@ -23,7 +23,7 @@ import { CatRequestBase } from '@cat/_types/CatBase' * Returns information about the master node, including the ID, bound IP address, and name. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API. * @rest_spec_name cat.master - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-master * @cluster_privileges monitor diff --git a/specification/cat/nodeattrs/CatNodeAttributesRequest.ts b/specification/cat/nodeattrs/CatNodeAttributesRequest.ts index d515acfbd4..b70d312752 100644 --- a/specification/cat/nodeattrs/CatNodeAttributesRequest.ts +++ b/specification/cat/nodeattrs/CatNodeAttributesRequest.ts @@ -23,7 +23,7 @@ import { CatRequestBase } from '@cat/_types/CatBase' * Returns information about custom node attributes. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API. * @rest_spec_name cat.nodeattrs - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-nodeattrs * @cluster_privileges monitor diff --git a/specification/cat/nodes/CatNodesRequest.ts b/specification/cat/nodes/CatNodesRequest.ts index f069fbcbcd..97d709f9c7 100644 --- a/specification/cat/nodes/CatNodesRequest.ts +++ b/specification/cat/nodes/CatNodesRequest.ts @@ -24,7 +24,7 @@ import { Bytes } from '@_types/common' * Returns information about the nodes in a cluster. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API. * @rest_spec_name cat.nodes - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-nodes * @cluster_privileges monitor diff --git a/specification/cat/pending_tasks/CatPendingTasksRequest.ts b/specification/cat/pending_tasks/CatPendingTasksRequest.ts index 2ee3db8dc9..ee11e5c89b 100644 --- a/specification/cat/pending_tasks/CatPendingTasksRequest.ts +++ b/specification/cat/pending_tasks/CatPendingTasksRequest.ts @@ -23,7 +23,7 @@ import { CatRequestBase } from '@cat/_types/CatBase' * Returns cluster-level changes that have not yet been executed. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the pending cluster tasks API. * @rest_spec_name cat.pending_tasks - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-pending-tasks * @cluster_privileges monitor diff --git a/specification/cat/plugins/CatPluginsRequest.ts b/specification/cat/plugins/CatPluginsRequest.ts index 1372cf8795..14da3e5bda 100644 --- a/specification/cat/plugins/CatPluginsRequest.ts +++ b/specification/cat/plugins/CatPluginsRequest.ts @@ -23,7 +23,7 @@ import { CatRequestBase } from '@cat/_types/CatBase' * Returns a list of plugins running on each node of a cluster. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API. * @rest_spec_name cat.plugins - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-plugins * @cluster_privileges monitor diff --git a/specification/cat/recovery/CatRecoveryRequest.ts b/specification/cat/recovery/CatRecoveryRequest.ts index 4c8032d686..666ef6a06c 100644 --- a/specification/cat/recovery/CatRecoveryRequest.ts +++ b/specification/cat/recovery/CatRecoveryRequest.ts @@ -26,7 +26,7 @@ import { Bytes, Indices } from '@_types/common' * For data streams, the API returns information about the stream’s backing indices. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the index recovery API. * @rest_spec_name cat.recovery - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-recovery * @cluster_privileges monitor diff --git a/specification/cat/segments/CatSegmentsRequest.ts b/specification/cat/segments/CatSegmentsRequest.ts index 695870bea0..57b07f8034 100644 --- a/specification/cat/segments/CatSegmentsRequest.ts +++ b/specification/cat/segments/CatSegmentsRequest.ts @@ -25,7 +25,7 @@ import { Bytes, Indices } from '@_types/common' * For data streams, the API returns information about the backing indices. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the index segments API. * @rest_spec_name cat.segments - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-segments * @cluster_privileges monitor diff --git a/specification/cat/shards/CatShardsRequest.ts b/specification/cat/shards/CatShardsRequest.ts index 092f5600c2..fa6a11f221 100644 --- a/specification/cat/shards/CatShardsRequest.ts +++ b/specification/cat/shards/CatShardsRequest.ts @@ -25,7 +25,7 @@ import { Bytes, Indices } from '@_types/common' * For data streams, the API returns information about the backing indices. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. * @rest_spec_name cat.shards - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-shards * @cluster_privileges monitor diff --git a/specification/cat/thread_pool/CatThreadPoolRequest.ts b/specification/cat/thread_pool/CatThreadPoolRequest.ts index 6081a1bb50..2cd1907531 100644 --- a/specification/cat/thread_pool/CatThreadPoolRequest.ts +++ b/specification/cat/thread_pool/CatThreadPoolRequest.ts @@ -26,7 +26,7 @@ import { TimeUnit } from '@_types/Time' * Returned information includes all built-in thread pools and custom thread pools. * IMPORTANT: cat APIs are only intended for human consumption using the command line or Kibana console. They are not intended for use by applications. For application consumption, use the nodes info API. * @rest_spec_name cat.thread_pool - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cat-thread-pool * @cluster_privileges monitor diff --git a/specification/cluster/get_settings/ClusterGetSettingsRequest.ts b/specification/cluster/get_settings/ClusterGetSettingsRequest.ts index 346827e07f..8a608fb3eb 100644 --- a/specification/cluster/get_settings/ClusterGetSettingsRequest.ts +++ b/specification/cluster/get_settings/ClusterGetSettingsRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' * Returns cluster-wide settings. * By default, it returns only settings that have been explicitly defined. * @rest_spec_name cluster.get_settings - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor * @doc_id cluster-get-settings diff --git a/specification/cluster/pending_tasks/ClusterPendingTasksRequest.ts b/specification/cluster/pending_tasks/ClusterPendingTasksRequest.ts index 7f2fac4e8a..a6bbb197e2 100644 --- a/specification/cluster/pending_tasks/ClusterPendingTasksRequest.ts +++ b/specification/cluster/pending_tasks/ClusterPendingTasksRequest.ts @@ -26,7 +26,7 @@ import { Duration } from '@_types/Time' * These are distinct from the tasks reported by the Task Management API which include periodic tasks and tasks initiated by the user, such as node stats, search queries, or create index requests. * However, if a user-initiated task such as a create index command causes a cluster state update, the activity of this task might be reported by both task api and pending cluster tasks API. * @rest_spec_name cluster.pending_tasks - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor * @doc_id cluster-pending diff --git a/specification/cluster/put_settings/ClusterPutSettingsRequest.ts b/specification/cluster/put_settings/ClusterPutSettingsRequest.ts index 6862e5c377..19bc33b4a1 100644 --- a/specification/cluster/put_settings/ClusterPutSettingsRequest.ts +++ b/specification/cluster/put_settings/ClusterPutSettingsRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * @rest_spec_name cluster.put_settings - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cluster-update-settings */ diff --git a/specification/graph/explore/GraphExploreRequest.ts b/specification/graph/explore/GraphExploreRequest.ts index fe0953a526..6971ab33f1 100644 --- a/specification/graph/explore/GraphExploreRequest.ts +++ b/specification/graph/explore/GraphExploreRequest.ts @@ -29,7 +29,7 @@ import { VertexDefinition } from '@graph/_types/Vertex' * Extracts and summarizes information about the documents and terms in an Elasticsearch data stream or index. * @doc_id graph-explore-api * @rest_spec_name graph.explore - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/analyze/IndicesAnalyzeRequest.ts b/specification/indices/analyze/IndicesAnalyzeRequest.ts index 5bced33455..b15790bb1a 100644 --- a/specification/indices/analyze/IndicesAnalyzeRequest.ts +++ b/specification/indices/analyze/IndicesAnalyzeRequest.ts @@ -28,7 +28,7 @@ import { TextToAnalyze } from './types' * Performs analysis on a text string and returns the resulting tokens. * @doc_id indices-analyze * @rest_spec_name indices.analyze - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/clear_cache/IndicesIndicesClearCacheRequest.ts b/specification/indices/clear_cache/IndicesIndicesClearCacheRequest.ts index 6157725e59..6a9fed2bcb 100644 --- a/specification/indices/clear_cache/IndicesIndicesClearCacheRequest.ts +++ b/specification/indices/clear_cache/IndicesIndicesClearCacheRequest.ts @@ -24,7 +24,7 @@ import { ExpandWildcards, Fields, Indices } from '@_types/common' * Clears the caches of one or more indices. * For data streams, the API clears the caches of the stream’s backing indices. * @rest_spec_name indices.clear_cache - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/close/CloseIndexRequest.ts b/specification/indices/close/CloseIndexRequest.ts index 118506881e..f290a2de24 100644 --- a/specification/indices/close/CloseIndexRequest.ts +++ b/specification/indices/close/CloseIndexRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Closes an index. * @doc_id indices-close * @rest_spec_name indices.close - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/create/IndicesCreateRequest.ts b/specification/indices/create/IndicesCreateRequest.ts index 52141aeec9..f8df41fe16 100644 --- a/specification/indices/create/IndicesCreateRequest.ts +++ b/specification/indices/create/IndicesCreateRequest.ts @@ -29,7 +29,7 @@ import { Duration } from '@_types/Time' * Creates a new index. * @doc_id indices-create-index * @rest_spec_name indices.create - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @index_privileges create_index, manage */ diff --git a/specification/indices/delete/IndicesDeleteRequest.ts b/specification/indices/delete/IndicesDeleteRequest.ts index 6bcf7c919d..c57685eac0 100644 --- a/specification/indices/delete/IndicesDeleteRequest.ts +++ b/specification/indices/delete/IndicesDeleteRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Deletes one or more indices. * @rest_spec_name indices.delete - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/delete_alias/IndicesDeleteAliasRequest.ts b/specification/indices/delete_alias/IndicesDeleteAliasRequest.ts index f498bf2d50..3fe20a2d57 100644 --- a/specification/indices/delete_alias/IndicesDeleteAliasRequest.ts +++ b/specification/indices/delete_alias/IndicesDeleteAliasRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Removes a data stream or index from an alias. * @rest_spec_name indices.delete_alias - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/delete_template/IndicesDeleteTemplateRequest.ts b/specification/indices/delete_template/IndicesDeleteTemplateRequest.ts index c29e6da391..19689773c4 100644 --- a/specification/indices/delete_template/IndicesDeleteTemplateRequest.ts +++ b/specification/indices/delete_template/IndicesDeleteTemplateRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Deletes a legacy index template. * @rest_spec_name indices.delete_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @cluster_privileges manage_index_templates,manage */ export interface Request extends RequestBase { diff --git a/specification/indices/exists/IndicesExistsRequest.ts b/specification/indices/exists/IndicesExistsRequest.ts index a6adde469f..69db3abbbd 100644 --- a/specification/indices/exists/IndicesExistsRequest.ts +++ b/specification/indices/exists/IndicesExistsRequest.ts @@ -23,7 +23,7 @@ import { ExpandWildcards, Indices } from '@_types/common' /** * Checks if a data stream, index, or alias exists. * @rest_spec_name indices.exists - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/exists_alias/IndicesExistsAliasRequest.ts b/specification/indices/exists_alias/IndicesExistsAliasRequest.ts index c9f773864c..6310f0a69d 100644 --- a/specification/indices/exists_alias/IndicesExistsAliasRequest.ts +++ b/specification/indices/exists_alias/IndicesExistsAliasRequest.ts @@ -23,7 +23,7 @@ import { ExpandWildcards, Indices, Names } from '@_types/common' /** * Checks if an alias exists. * @rest_spec_name indices.exists_alias - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts b/specification/indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts index 6ff1d8c8f6..823cb15db6 100644 --- a/specification/indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts +++ b/specification/indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts @@ -23,7 +23,7 @@ import { Duration } from '@_types/Time' /** * @rest_spec_name indices.exists_index_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/exists_template/IndicesExistsTemplateRequest.ts b/specification/indices/exists_template/IndicesExistsTemplateRequest.ts index 51be3c9df9..5e1937efe0 100644 --- a/specification/indices/exists_template/IndicesExistsTemplateRequest.ts +++ b/specification/indices/exists_template/IndicesExistsTemplateRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Check existence of index templates. * Returns information about whether a particular index template exists. * @rest_spec_name indices.exists_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/indices/flush/IndicesFlushRequest.ts b/specification/indices/flush/IndicesFlushRequest.ts index 624a472ad9..cac3bd07f0 100644 --- a/specification/indices/flush/IndicesFlushRequest.ts +++ b/specification/indices/flush/IndicesFlushRequest.ts @@ -24,7 +24,7 @@ import { ExpandWildcards, Indices } from '@_types/common' * Flushes one or more data streams or indices. * @doc_id indices-flush * @rest_spec_name indices.flush - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/get/IndicesGetRequest.ts b/specification/indices/get/IndicesGetRequest.ts index c2fc10b903..28254d06cb 100644 --- a/specification/indices/get/IndicesGetRequest.ts +++ b/specification/indices/get/IndicesGetRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Returns information about one or more indices. For data streams, the API returns information about the * stream’s backing indices. * @rest_spec_name indices.get - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @index_privileges view_index_metadata, manage */ diff --git a/specification/indices/get_alias/IndicesGetAliasRequest.ts b/specification/indices/get_alias/IndicesGetAliasRequest.ts index dad10bb348..8a43d2fc66 100644 --- a/specification/indices/get_alias/IndicesGetAliasRequest.ts +++ b/specification/indices/get_alias/IndicesGetAliasRequest.ts @@ -23,7 +23,7 @@ import { ExpandWildcards, Indices, Names } from '@_types/common' /** * Retrieves information for one or more aliases. * @rest_spec_name indices.get_alias - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/get_field_mapping/IndicesGetFieldMappingRequest.ts b/specification/indices/get_field_mapping/IndicesGetFieldMappingRequest.ts index f23d7fde94..66157257cb 100644 --- a/specification/indices/get_field_mapping/IndicesGetFieldMappingRequest.ts +++ b/specification/indices/get_field_mapping/IndicesGetFieldMappingRequest.ts @@ -24,7 +24,7 @@ import { ExpandWildcards, Fields, Indices } from '@_types/common' * Retrieves mapping definitions for one or more fields. * For data streams, the API retrieves field mappings for the stream’s backing indices. * @rest_spec_name indices.get_field_mapping - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/indices/get_mapping/IndicesGetMappingRequest.ts b/specification/indices/get_mapping/IndicesGetMappingRequest.ts index c95c7dbfe1..8f40a3d3e5 100644 --- a/specification/indices/get_mapping/IndicesGetMappingRequest.ts +++ b/specification/indices/get_mapping/IndicesGetMappingRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Retrieves mapping definitions for one or more indices. * For data streams, the API retrieves mappings for the stream’s backing indices. * @rest_spec_name indices.get_mapping - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/get_settings/IndicesGetSettingsRequest.ts b/specification/indices/get_settings/IndicesGetSettingsRequest.ts index aed88f0607..dd4344e791 100644 --- a/specification/indices/get_settings/IndicesGetSettingsRequest.ts +++ b/specification/indices/get_settings/IndicesGetSettingsRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Returns setting information for one or more indices. For data streams, * returns setting information for the stream’s backing indices. * @rest_spec_name indices.get_settings - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @index_privileges view_index_metadata, monitor, manage */ diff --git a/specification/indices/get_template/IndicesGetTemplateRequest.ts b/specification/indices/get_template/IndicesGetTemplateRequest.ts index 89e159dcd2..0ed5faad1e 100644 --- a/specification/indices/get_template/IndicesGetTemplateRequest.ts +++ b/specification/indices/get_template/IndicesGetTemplateRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Get index templates. * Retrieves information about one or more index templates. * @rest_spec_name indices.get_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/indices/open/IndicesOpenRequest.ts b/specification/indices/open/IndicesOpenRequest.ts index 9821d50bb9..31d76bf84d 100644 --- a/specification/indices/open/IndicesOpenRequest.ts +++ b/specification/indices/open/IndicesOpenRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' * Opens a closed index. * For data streams, the API opens any closed backing indices. * @rest_spec_name indices.open - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/put_alias/IndicesPutAliasRequest.ts b/specification/indices/put_alias/IndicesPutAliasRequest.ts index 0730b11863..04b7729651 100644 --- a/specification/indices/put_alias/IndicesPutAliasRequest.ts +++ b/specification/indices/put_alias/IndicesPutAliasRequest.ts @@ -25,7 +25,7 @@ import { Duration } from '@_types/Time' /** * Adds a data stream or index to an alias. * @rest_spec_name indices.put_alias - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/put_mapping/IndicesPutMappingRequest.ts b/specification/indices/put_mapping/IndicesPutMappingRequest.ts index 44168f74fd..720a47c36d 100644 --- a/specification/indices/put_mapping/IndicesPutMappingRequest.ts +++ b/specification/indices/put_mapping/IndicesPutMappingRequest.ts @@ -44,7 +44,7 @@ import { Duration } from '@_types/Time' * You can also use this API to change the search settings of existing fields. * For data streams, these changes are applied to all backing indices by default. * @rest_spec_name indices.put_mapping - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/put_settings/IndicesPutSettingsRequest.ts b/specification/indices/put_settings/IndicesPutSettingsRequest.ts index 81f70c68f9..d11ac1b9e2 100644 --- a/specification/indices/put_settings/IndicesPutSettingsRequest.ts +++ b/specification/indices/put_settings/IndicesPutSettingsRequest.ts @@ -26,7 +26,7 @@ import { Duration } from '@_types/Time' * Changes a dynamic index setting in real time. For data streams, index setting * changes are applied to all backing indices by default. * @rest_spec_name indices.put_settings - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @index_privileges manage */ diff --git a/specification/indices/put_template/IndicesPutTemplateRequest.ts b/specification/indices/put_template/IndicesPutTemplateRequest.ts index 087c9bd16c..3e24111a97 100644 --- a/specification/indices/put_template/IndicesPutTemplateRequest.ts +++ b/specification/indices/put_template/IndicesPutTemplateRequest.ts @@ -30,7 +30,7 @@ import { IndexSettings } from '@indices/_types/IndexSettings' * Create or update an index template. * Index templates define settings, mappings, and aliases that can be applied automatically to new indices. * @rest_spec_name indices.put_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/recovery/IndicesRecoveryRequest.ts b/specification/indices/recovery/IndicesRecoveryRequest.ts index 1c8694ba6d..9c31096e57 100644 --- a/specification/indices/recovery/IndicesRecoveryRequest.ts +++ b/specification/indices/recovery/IndicesRecoveryRequest.ts @@ -24,7 +24,7 @@ import { Indices } from '@_types/common' * Returns information about ongoing and completed shard recoveries for one or more indices. * For data streams, the API returns information for the stream’s backing indices. * @rest_spec_name indices.recovery - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/refresh/IndicesRefreshRequest.ts b/specification/indices/refresh/IndicesRefreshRequest.ts index 252452f973..e8394e054d 100644 --- a/specification/indices/refresh/IndicesRefreshRequest.ts +++ b/specification/indices/refresh/IndicesRefreshRequest.ts @@ -24,7 +24,7 @@ import { ExpandWildcards, Indices } from '@_types/common' * A refresh makes recent operations performed on one or more indices available for search. * For data streams, the API runs the refresh operation on the stream’s backing indices. * @rest_spec_name indices.refresh - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/indices/segments/IndicesSegmentsRequest.ts b/specification/indices/segments/IndicesSegmentsRequest.ts index 5084f5c14f..4062ecaedf 100644 --- a/specification/indices/segments/IndicesSegmentsRequest.ts +++ b/specification/indices/segments/IndicesSegmentsRequest.ts @@ -23,7 +23,7 @@ import { ExpandWildcards, Indices } from '@_types/common' /** Returns low-level information about the Lucene segments in index shards. * For data streams, the API returns information about the stream’s backing indices. * @rest_spec_name indices.segments - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/indices/shard_stores/IndicesShardStoresRequest.ts b/specification/indices/shard_stores/IndicesShardStoresRequest.ts index 79df2984dd..04dd15b62b 100644 --- a/specification/indices/shard_stores/IndicesShardStoresRequest.ts +++ b/specification/indices/shard_stores/IndicesShardStoresRequest.ts @@ -25,7 +25,7 @@ import { ShardStoreStatus } from './types' * Retrieves store information about replica shards in one or more indices. * For data streams, the API retrieves store information for the stream’s backing indices. * @rest_spec_name indices.shard_stores - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/indices/simulate_template/IndicesSimulateTemplateRequest.ts b/specification/indices/simulate_template/IndicesSimulateTemplateRequest.ts index 7b60dd7b82..274c203a45 100644 --- a/specification/indices/simulate_template/IndicesSimulateTemplateRequest.ts +++ b/specification/indices/simulate_template/IndicesSimulateTemplateRequest.ts @@ -28,7 +28,7 @@ import { long } from '@_types/Numeric' * Simulate an index template. * Returns the index configuration that would be applied by a particular index template. * @rest_spec_name indices.simulate_template - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public * @cluster_privileges manage_index_templates,manage */ diff --git a/specification/license/delete/DeleteLicenseRequest.ts b/specification/license/delete/DeleteLicenseRequest.ts index 3aa0d962b9..26656cd76a 100644 --- a/specification/license/delete/DeleteLicenseRequest.ts +++ b/specification/license/delete/DeleteLicenseRequest.ts @@ -21,6 +21,6 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name license.delete - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase {} diff --git a/specification/license/get/GetLicenseRequest.ts b/specification/license/get/GetLicenseRequest.ts index 7ef71200f1..b4d301f2c5 100644 --- a/specification/license/get/GetLicenseRequest.ts +++ b/specification/license/get/GetLicenseRequest.ts @@ -23,7 +23,7 @@ import { RequestBase } from '@_types/Base' * This API returns information about the type of license, when it was issued, and when it expires, for example. * For more information about the different types of licenses, see https://www.elastic.co/subscriptions. * @rest_spec_name license.get - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=public */ export interface Request extends RequestBase { diff --git a/specification/license/post/PostLicenseRequest.ts b/specification/license/post/PostLicenseRequest.ts index 0b90abf151..8951d5188d 100644 --- a/specification/license/post/PostLicenseRequest.ts +++ b/specification/license/post/PostLicenseRequest.ts @@ -22,7 +22,7 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name license.post - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @cluster_privileges manage */ export interface Request extends RequestBase { diff --git a/specification/nodes/hot_threads/NodesHotThreadsRequest.ts b/specification/nodes/hot_threads/NodesHotThreadsRequest.ts index 9820da12d3..abcd41d7d5 100644 --- a/specification/nodes/hot_threads/NodesHotThreadsRequest.ts +++ b/specification/nodes/hot_threads/NodesHotThreadsRequest.ts @@ -26,7 +26,7 @@ import { Duration } from '@_types/Time' * This API yields a breakdown of the hot threads on each selected node in the cluster. * The output is plain text with a breakdown of each node’s top hot threads. * @rest_spec_name nodes.hot_threads - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor,manage * @doc_id cluster-nodes-hot-threads diff --git a/specification/nodes/stats/NodesStatsRequest.ts b/specification/nodes/stats/NodesStatsRequest.ts index 766d3f695c..13b27f3031 100644 --- a/specification/nodes/stats/NodesStatsRequest.ts +++ b/specification/nodes/stats/NodesStatsRequest.ts @@ -24,7 +24,7 @@ import { Duration } from '@_types/Time' /** * Returns cluster nodes statistics. * @rest_spec_name nodes.stats - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @doc_id cluster-nodes-stats * @cluster_privileges monitor,manage diff --git a/specification/security/change_password/SecurityChangePasswordRequest.ts b/specification/security/change_password/SecurityChangePasswordRequest.ts index e7743f887e..52429e61fe 100644 --- a/specification/security/change_password/SecurityChangePasswordRequest.ts +++ b/specification/security/change_password/SecurityChangePasswordRequest.ts @@ -22,7 +22,7 @@ import { Password, Refresh, Username } from '@_types/common' /** * @rest_spec_name security.change_password - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts b/specification/security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts index 1e90a00924..b87498885a 100644 --- a/specification/security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts +++ b/specification/security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts @@ -22,7 +22,7 @@ import { Names } from '@_types/common' /** * @rest_spec_name security.clear_cached_realms - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/security/clear_cached_roles/ClearCachedRolesRequest.ts b/specification/security/clear_cached_roles/ClearCachedRolesRequest.ts index a5a5fe1210..b84006af56 100644 --- a/specification/security/clear_cached_roles/ClearCachedRolesRequest.ts +++ b/specification/security/clear_cached_roles/ClearCachedRolesRequest.ts @@ -22,7 +22,7 @@ import { Names } from '@_types/common' /** * @rest_spec_name security.clear_cached_roles - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts b/specification/security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts index de5d28afdc..af81d05f3f 100644 --- a/specification/security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts +++ b/specification/security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts @@ -22,7 +22,7 @@ import { Names, Namespace, Service } from '@_types/common' /** * @rest_spec_name security.clear_cached_service_tokens - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/security/create_service_token/CreateServiceTokenRequest.ts b/specification/security/create_service_token/CreateServiceTokenRequest.ts index e50a3d2505..2e822eb7ed 100644 --- a/specification/security/create_service_token/CreateServiceTokenRequest.ts +++ b/specification/security/create_service_token/CreateServiceTokenRequest.ts @@ -24,7 +24,7 @@ import { Refresh } from '@_types/common' /** * Creates a service accounts token for access without requiring basic authentication. * @rest_spec_name security.create_service_token - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/security/delete_role/SecurityDeleteRoleRequest.ts b/specification/security/delete_role/SecurityDeleteRoleRequest.ts index 5597a1c0fc..fa4afc81df 100644 --- a/specification/security/delete_role/SecurityDeleteRoleRequest.ts +++ b/specification/security/delete_role/SecurityDeleteRoleRequest.ts @@ -22,7 +22,7 @@ import { Name, Refresh } from '@_types/common' /** * @rest_spec_name security.delete_role - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/security/delete_user/SecurityDeleteUserRequest.ts b/specification/security/delete_user/SecurityDeleteUserRequest.ts index 77f0c663a0..07217b16d0 100644 --- a/specification/security/delete_user/SecurityDeleteUserRequest.ts +++ b/specification/security/delete_user/SecurityDeleteUserRequest.ts @@ -22,7 +22,7 @@ import { Refresh, Username } from '@_types/common' /** * @rest_spec_name security.delete_user - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/security/disable_user/SecurityDisableUserRequest.ts b/specification/security/disable_user/SecurityDisableUserRequest.ts index e11585e5d3..30c1447a4e 100644 --- a/specification/security/disable_user/SecurityDisableUserRequest.ts +++ b/specification/security/disable_user/SecurityDisableUserRequest.ts @@ -22,7 +22,7 @@ import { Refresh, Username } from '@_types/common' /** * @rest_spec_name security.disable_user - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/security/enable_user/SecurityEnableUserRequest.ts b/specification/security/enable_user/SecurityEnableUserRequest.ts index c56419b912..538d919407 100644 --- a/specification/security/enable_user/SecurityEnableUserRequest.ts +++ b/specification/security/enable_user/SecurityEnableUserRequest.ts @@ -22,7 +22,7 @@ import { Refresh, Username } from '@_types/common' /** * @rest_spec_name security.enable_user - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/security/get_role/SecurityGetRoleRequest.ts b/specification/security/get_role/SecurityGetRoleRequest.ts index f981198896..2f0a9917a8 100644 --- a/specification/security/get_role/SecurityGetRoleRequest.ts +++ b/specification/security/get_role/SecurityGetRoleRequest.ts @@ -24,7 +24,7 @@ import { Names } from '@_types/common' * The role management APIs are generally the preferred way to manage roles, rather than using file-based role management. * The get roles API cannot retrieve roles that are defined in roles files. * @rest_spec_name security.get_role - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage_security */ diff --git a/specification/security/get_user/SecurityGetUserRequest.ts b/specification/security/get_user/SecurityGetUserRequest.ts index ca077ba3ee..0da3646956 100644 --- a/specification/security/get_user/SecurityGetUserRequest.ts +++ b/specification/security/get_user/SecurityGetUserRequest.ts @@ -22,7 +22,7 @@ import { Username } from '@_types/common' /** * @rest_spec_name security.get_user - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/security/put_role/SecurityPutRoleRequest.ts b/specification/security/put_role/SecurityPutRoleRequest.ts index 1caed6e25c..7ab61f878c 100644 --- a/specification/security/put_role/SecurityPutRoleRequest.ts +++ b/specification/security/put_role/SecurityPutRoleRequest.ts @@ -31,7 +31,7 @@ import { Metadata, Name, Refresh } from '@_types/common' * The role management APIs are generally the preferred way to manage roles, rather than using file-based role management. * The create or update roles API cannot update roles that are defined in roles files. * @rest_spec_name security.put_role - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges manage_security */ diff --git a/specification/security/put_user/SecurityPutUserRequest.ts b/specification/security/put_user/SecurityPutUserRequest.ts index c685680bb6..ada08b3c16 100644 --- a/specification/security/put_user/SecurityPutUserRequest.ts +++ b/specification/security/put_user/SecurityPutUserRequest.ts @@ -22,7 +22,7 @@ import { Metadata, Password, Refresh, Username } from '@_types/common' /** * @rest_spec_name security.put_user - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/snapshot/delete/SnapshotDeleteRequest.ts b/specification/snapshot/delete/SnapshotDeleteRequest.ts index 1563821723..e9194337f4 100644 --- a/specification/snapshot/delete/SnapshotDeleteRequest.ts +++ b/specification/snapshot/delete/SnapshotDeleteRequest.ts @@ -23,7 +23,7 @@ import { Duration } from '@_types/Time' /** * @rest_spec_name snapshot.delete - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private */ export interface Request extends RequestBase { diff --git a/specification/watcher/ack_watch/WatcherAckWatchRequest.ts b/specification/watcher/ack_watch/WatcherAckWatchRequest.ts index ef91f86c6a..4283e019c0 100644 --- a/specification/watcher/ack_watch/WatcherAckWatchRequest.ts +++ b/specification/watcher/ack_watch/WatcherAckWatchRequest.ts @@ -22,7 +22,7 @@ import { Name, Names } from '@_types/common' /** * @rest_spec_name watcher.ack_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/watcher/activate_watch/WatcherActivateWatchRequest.ts b/specification/watcher/activate_watch/WatcherActivateWatchRequest.ts index 4929ae1eb5..cbd1a80149 100644 --- a/specification/watcher/activate_watch/WatcherActivateWatchRequest.ts +++ b/specification/watcher/activate_watch/WatcherActivateWatchRequest.ts @@ -22,7 +22,7 @@ import { Name } from '@_types/common' /** * @rest_spec_name watcher.activate_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/watcher/deactivate_watch/DeactivateWatchRequest.ts b/specification/watcher/deactivate_watch/DeactivateWatchRequest.ts index 372ff1c45b..e509e8d82b 100644 --- a/specification/watcher/deactivate_watch/DeactivateWatchRequest.ts +++ b/specification/watcher/deactivate_watch/DeactivateWatchRequest.ts @@ -22,7 +22,7 @@ import { Name } from '@_types/common' /** * @rest_spec_name watcher.deactivate_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/watcher/delete_watch/DeleteWatchRequest.ts b/specification/watcher/delete_watch/DeleteWatchRequest.ts index 6e5c97b141..a51c92a8c1 100644 --- a/specification/watcher/delete_watch/DeleteWatchRequest.ts +++ b/specification/watcher/delete_watch/DeleteWatchRequest.ts @@ -22,7 +22,7 @@ import { Name } from '@_types/common' /** * @rest_spec_name watcher.delete_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/watcher/execute_watch/WatcherExecuteWatchRequest.ts b/specification/watcher/execute_watch/WatcherExecuteWatchRequest.ts index c64ca7469e..bb02e98dff 100644 --- a/specification/watcher/execute_watch/WatcherExecuteWatchRequest.ts +++ b/specification/watcher/execute_watch/WatcherExecuteWatchRequest.ts @@ -29,7 +29,7 @@ import { Id } from '@_types/common' * This API can be used to force execution of the watch outside of its triggering logic or to simulate the watch execution for debugging purposes. * For testing and debugging purposes, you also have fine-grained control on how the watch runs. You can execute the watch without executing all of its actions or alternatively by simulating them. You can also force execution by ignoring the watch condition and control whether a watch record would be written to the watch history after execution. * @rest_spec_name watcher.execute_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @cluster_privileges manage_watcher */ export interface Request extends RequestBase { diff --git a/specification/watcher/put_watch/WatcherPutWatchRequest.ts b/specification/watcher/put_watch/WatcherPutWatchRequest.ts index fe90230144..0443b1503b 100644 --- a/specification/watcher/put_watch/WatcherPutWatchRequest.ts +++ b/specification/watcher/put_watch/WatcherPutWatchRequest.ts @@ -29,7 +29,7 @@ import { TransformContainer } from '@_types/Transform' /** * @rest_spec_name watcher.put_watch - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase { path_parts: { diff --git a/specification/watcher/start/WatcherStartRequest.ts b/specification/watcher/start/WatcherStartRequest.ts index 0c1eea752f..9cd0a34a7b 100644 --- a/specification/watcher/start/WatcherStartRequest.ts +++ b/specification/watcher/start/WatcherStartRequest.ts @@ -21,6 +21,6 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name watcher.start - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase {} diff --git a/specification/watcher/stop/WatcherStopRequest.ts b/specification/watcher/stop/WatcherStopRequest.ts index ce9bb37781..897a72f426 100644 --- a/specification/watcher/stop/WatcherStopRequest.ts +++ b/specification/watcher/stop/WatcherStopRequest.ts @@ -21,6 +21,6 @@ import { RequestBase } from '@_types/Base' /** * @rest_spec_name watcher.stop - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable */ export interface Request extends RequestBase {} diff --git a/specification/xpack/info/XPackInfoRequest.ts b/specification/xpack/info/XPackInfoRequest.ts index fddde07cf2..26ee1d0670 100644 --- a/specification/xpack/info/XPackInfoRequest.ts +++ b/specification/xpack/info/XPackInfoRequest.ts @@ -22,7 +22,7 @@ import { RequestBase } from '@_types/Base' /** * Provides general information about the installed X-Pack features. * @rest_spec_name xpack.info - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor,manage */ diff --git a/specification/xpack/usage/XPackUsageRequest.ts b/specification/xpack/usage/XPackUsageRequest.ts index 5a582df854..ec6e58c6ef 100644 --- a/specification/xpack/usage/XPackUsageRequest.ts +++ b/specification/xpack/usage/XPackUsageRequest.ts @@ -23,7 +23,7 @@ import { Duration } from '@_types/Time' /** * This API provides information about which features are currently enabled and available under the current license and some usage statistics. * @rest_spec_name xpack.usage - * @availability stack since=0.0.0 stability=stable + * @availability stack stability=stable * @availability serverless stability=stable visibility=private * @cluster_privileges monitor,manage */