From e641d87b7494306b826a003a847fc1a6a298a23c Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 4 Sep 2024 10:08:05 +0400 Subject: [PATCH 1/2] Fix most pipeline API errors --- output/openapi/elasticsearch-openapi.json | 44 +- .../elasticsearch-serverless-openapi.json | 44 +- output/schema/schema-serverless.json | 716 ++++++++------ output/schema/schema.json | 916 ++++++++++-------- output/typescript/types.ts | 8 +- specification/ingest/_types/Pipeline.ts | 6 + specification/ingest/_types/Processors.ts | 26 +- .../ingest/put_pipeline/PutPipelineRequest.ts | 6 + 8 files changed, 1046 insertions(+), 720 deletions(-) diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 2601a7ad5d..509e0c07a6 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -16102,6 +16102,10 @@ }, "version": { "$ref": "#/components/schemas/_types:VersionNumber" + }, + "deprecated": { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "type": "boolean" } } } @@ -86332,6 +86336,10 @@ "version": { "$ref": "#/components/schemas/_types:VersionNumber" }, + "deprecated": { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "type": "boolean" + }, "_meta": { "$ref": "#/components/schemas/_types:Metadata" } @@ -86471,10 +86479,17 @@ }, "value": { "description": "The value to be appended. Supports template snippets.", - "type": "array", - "items": { - "type": "object" - } + "oneOf": [ + { + "type": "object" + }, + { + "type": "array", + "items": { + "type": "object" + } + } + ] }, "allow_duplicates": { "description": "If `false`, the processor does not append values already present in the field.", @@ -86838,6 +86853,10 @@ "field": { "$ref": "#/components/schemas/_types:Field" }, + "override": { + "description": "Controls the behavior when there is already an existing nested object that conflicts with the expanded field.\nWhen `false`, the processor will merge conflicts by combining the old and the new values into an array.\nWhen `true`, the value from the expanded field will overwrite the existing value.", + "type": "boolean" + }, "path": { "description": "The field that contains the field to expand.\nOnly required if the field to expand is part another object field, because the `field` option can only understand leaf fields.", "type": "string" @@ -87047,6 +87066,10 @@ }, "target_field": { "$ref": "#/components/schemas/_types:Field" + }, + "download_database_on_pipeline_creation": { + "description": "If `true` (and if `ingest.geoip.downloader.eager.download` is `false`), the missing database is downloaded when the pipeline is created.\nElse, the download is triggered by when the pipeline is used as the `default_pipeline` or `final_pipeline` in an index.", + "type": "boolean" } }, "required": [ @@ -87792,6 +87815,19 @@ }, "target_field": { "$ref": "#/components/schemas/_types:Field" + }, + "properties": { + "description": "Controls what properties are added to `target_field`.", + "type": "array", + "items": { + "type": "string" + } + }, + "extract_device_type": { + "description": "Extracts device type from the user agent string on a best-effort basis.", + "x-available-since": "8.9.0", + "x-beta": true, + "type": "boolean" } }, "required": [ diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 7fb560f08c..db5fa07fd0 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -9649,6 +9649,10 @@ }, "version": { "$ref": "#/components/schemas/_types:VersionNumber" + }, + "deprecated": { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "type": "boolean" } } } @@ -55132,6 +55136,10 @@ "version": { "$ref": "#/components/schemas/_types:VersionNumber" }, + "deprecated": { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "type": "boolean" + }, "_meta": { "$ref": "#/components/schemas/_types:Metadata" } @@ -55271,10 +55279,17 @@ }, "value": { "description": "The value to be appended. Supports template snippets.", - "type": "array", - "items": { - "type": "object" - } + "oneOf": [ + { + "type": "object" + }, + { + "type": "array", + "items": { + "type": "object" + } + } + ] }, "allow_duplicates": { "description": "If `false`, the processor does not append values already present in the field.", @@ -55638,6 +55653,10 @@ "field": { "$ref": "#/components/schemas/_types:Field" }, + "override": { + "description": "Controls the behavior when there is already an existing nested object that conflicts with the expanded field.\nWhen `false`, the processor will merge conflicts by combining the old and the new values into an array.\nWhen `true`, the value from the expanded field will overwrite the existing value.", + "type": "boolean" + }, "path": { "description": "The field that contains the field to expand.\nOnly required if the field to expand is part another object field, because the `field` option can only understand leaf fields.", "type": "string" @@ -55847,6 +55866,10 @@ }, "target_field": { "$ref": "#/components/schemas/_types:Field" + }, + "download_database_on_pipeline_creation": { + "description": "If `true` (and if `ingest.geoip.downloader.eager.download` is `false`), the missing database is downloaded when the pipeline is created.\nElse, the download is triggered by when the pipeline is used as the `default_pipeline` or `final_pipeline` in an index.", + "type": "boolean" } }, "required": [ @@ -56592,6 +56615,19 @@ }, "target_field": { "$ref": "#/components/schemas/_types:Field" + }, + "properties": { + "description": "Controls what properties are added to `target_field`.", + "type": "array", + "items": { + "type": "string" + } + }, + "extract_device_type": { + "description": "Extracts device type from the user agent string on a best-effort basis.", + "x-available-since": "8.9.0", + "x-beta": true, + "type": "boolean" } }, "required": [ diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index 3719182113..e80965fb14 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -23092,7 +23092,7 @@ } } ], - "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L42-L150" + "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L41-L149" }, { "body": { @@ -25422,6 +25422,19 @@ "namespace": "_types" } } + }, + { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "name": "deprecated", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ] }, @@ -25491,7 +25504,7 @@ } } ], - "specLocation": "ingest/put_pipeline/PutPipelineRequest.ts#L25-L77" + "specLocation": "ingest/put_pipeline/PutPipelineRequest.ts#L25-L83" }, { "body": { @@ -25587,7 +25600,7 @@ } } ], - "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L26-L58" + "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L25-L57" }, { "body": { @@ -27777,7 +27790,7 @@ "name": "Response", "namespace": "ml.get_data_frame_analytics_stats" }, - "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L24-L30" + "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L23-L29" }, { "attachedBehaviors": [ @@ -31149,7 +31162,7 @@ } } ], - "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L29-L125" + "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L127" }, { "body": { @@ -37749,7 +37762,7 @@ "name": "Response", "namespace": "search_application.put_behavioral_analytics" }, - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L24-L26" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L23-L25" }, { "attachedBehaviors": [ @@ -37859,7 +37872,7 @@ "name": "Response", "namespace": "search_application.search" }, - "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L23-L25" + "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L22-L24" }, { "attachedBehaviors": [ @@ -40307,7 +40320,7 @@ } ], "query": [], - "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L24-L36" + "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L35" }, { "body": { @@ -40925,7 +40938,7 @@ "name": "Response", "namespace": "sql.translate" }, - "specLocation": "sql/translate/TranslateSqlResponse.ts#L28-L38" + "specLocation": "sql/translate/TranslateSqlResponse.ts#L27-L37" }, { "attachedBehaviors": [ @@ -47042,7 +47055,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L55-L65" + "specLocation": "_types/aggregations/bucket.ts#L60-L70" }, { "description": "Base type for bucket aggregations. These aggregations also accept sub-aggregations.", @@ -47058,7 +47071,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L48-L53" + "specLocation": "_types/aggregations/bucket.ts#L53-L58" }, { "kind": "interface", @@ -48769,7 +48782,7 @@ "name": "DistanceFeatureQuery", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L77-L85", + "specLocation": "_types/query_dsl/specialized.ts#L76-L84", "type": { "items": [ { @@ -48825,7 +48838,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L62-L65" + "specLocation": "_types/query_dsl/specialized.ts#L61-L64" }, { "generics": [ @@ -48887,7 +48900,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L40-L60" + "specLocation": "_types/query_dsl/specialized.ts#L39-L59" }, { "inherits": { @@ -48918,7 +48931,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L67-L70" + "specLocation": "_types/query_dsl/specialized.ts#L66-L69" }, { "inherits": { @@ -48949,7 +48962,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L72-L75" + "specLocation": "_types/query_dsl/specialized.ts#L71-L74" }, { "inherits": { @@ -51440,7 +51453,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L153-L156" + "specLocation": "_global/search/_types/highlighting.ts#L152-L155" }, { "kind": "interface", @@ -51724,7 +51737,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L48-L151" + "specLocation": "_global/search/_types/highlighting.ts#L47-L150" }, { "isOpen": true, @@ -51748,7 +51761,7 @@ "name": "HighlighterType", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L176-L191" + "specLocation": "_global/search/_types/highlighting.ts#L175-L190" }, { "kind": "enum", @@ -51770,7 +51783,7 @@ "name": "BoundaryScanner", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L27-L46" + "specLocation": "_global/search/_types/highlighting.ts#L26-L45" }, { "kind": "enum", @@ -51786,7 +51799,7 @@ "name": "HighlighterFragmenter", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L163-L166" + "specLocation": "_global/search/_types/highlighting.ts#L162-L165" }, { "kind": "enum", @@ -51799,7 +51812,7 @@ "name": "HighlighterOrder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L168-L170" + "specLocation": "_global/search/_types/highlighting.ts#L167-L169" }, { "kind": "enum", @@ -51812,7 +51825,7 @@ "name": "HighlighterTagsSchema", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L172-L174" + "specLocation": "_global/search/_types/highlighting.ts#L171-L173" }, { "kind": "enum", @@ -51828,7 +51841,7 @@ "name": "HighlighterEncoder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L158-L161" + "specLocation": "_global/search/_types/highlighting.ts#L157-L160" }, { "inherits": { @@ -51866,7 +51879,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L193-L196" + "specLocation": "_global/search/_types/highlighting.ts#L192-L195" }, { "kind": "type_alias", @@ -51936,7 +51949,7 @@ "name": "Sort", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L105-L105", + "specLocation": "_types/sort.ts#L104-L104", "type": { "items": [ { @@ -51970,7 +51983,7 @@ "name": "SortCombinations", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L99-L103", + "specLocation": "_types/sort.ts#L98-L102", "type": { "items": [ { @@ -52076,7 +52089,7 @@ } } ], - "specLocation": "_types/sort.ts#L87-L97", + "specLocation": "_types/sort.ts#L86-L96", "variants": { "kind": "container" } @@ -52167,7 +52180,7 @@ } ], "shortcutProperty": "order", - "specLocation": "_types/sort.ts#L44-L53" + "specLocation": "_types/sort.ts#L43-L52" }, { "kind": "type_alias", @@ -52233,7 +52246,7 @@ "name": "SortMode", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L109-L118" + "specLocation": "_types/sort.ts#L108-L117" }, { "kind": "interface", @@ -52287,7 +52300,7 @@ } } ], - "specLocation": "_types/sort.ts#L30-L35" + "specLocation": "_types/sort.ts#L29-L34" }, { "kind": "enum", @@ -52305,7 +52318,7 @@ "name": "SortOrder", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L120-L129" + "specLocation": "_types/sort.ts#L119-L128" }, { "kind": "enum", @@ -52475,7 +52488,7 @@ "name": "FieldSortNumericType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L37-L42" + "specLocation": "_types/sort.ts#L36-L41" }, { "kind": "interface", @@ -52496,7 +52509,7 @@ } } ], - "specLocation": "_types/sort.ts#L55-L57" + "specLocation": "_types/sort.ts#L54-L56" }, { "attachedBehaviors": [ @@ -52618,7 +52631,7 @@ } } ], - "specLocation": "_types/sort.ts#L59-L71" + "specLocation": "_types/sort.ts#L58-L70" }, { "kind": "enum", @@ -52729,7 +52742,7 @@ } } ], - "specLocation": "_types/sort.ts#L73-L79" + "specLocation": "_types/sort.ts#L72-L78" }, { "kind": "enum", @@ -52748,7 +52761,7 @@ "name": "ScriptSortType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L81-L85" + "specLocation": "_types/sort.ts#L80-L84" }, { "codegenNames": [ @@ -54673,7 +54686,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L87-L169" + "specLocation": "_types/query_dsl/specialized.ts#L86-L168" }, { "codegenNames": [ @@ -54688,7 +54701,7 @@ "name": "Like", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L195-L200", + "specLocation": "_types/query_dsl/specialized.ts#L194-L199", "type": { "items": [ { @@ -54820,7 +54833,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L171-L193" + "specLocation": "_types/query_dsl/specialized.ts#L170-L192" }, { "kind": "enum", @@ -55403,7 +55416,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L202-L239" + "specLocation": "_types/query_dsl/specialized.ts#L201-L238" }, { "inherits": { @@ -55462,7 +55475,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L241-L260", + "specLocation": "_types/query_dsl/specialized.ts#L240-L259", "variants": { "kind": "container" } @@ -55499,7 +55512,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L262-L271" + "specLocation": "_types/query_dsl/specialized.ts#L261-L270" }, { "inherits": { @@ -56357,7 +56370,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L302-L325" + "specLocation": "_types/query_dsl/specialized.ts#L301-L324" }, { "inherits": { @@ -56385,7 +56398,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L284-L289" + "specLocation": "_types/query_dsl/specialized.ts#L283-L288" }, { "kind": "interface", @@ -56394,7 +56407,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L273-L273" + "specLocation": "_types/query_dsl/specialized.ts#L272-L272" }, { "inherits": { @@ -56422,7 +56435,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L277-L282" + "specLocation": "_types/query_dsl/specialized.ts#L276-L281" }, { "inherits": { @@ -56437,7 +56450,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L275-L275" + "specLocation": "_types/query_dsl/specialized.ts#L274-L274" }, { "inherits": { @@ -56477,7 +56490,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L291-L300" + "specLocation": "_types/query_dsl/specialized.ts#L290-L299" }, { "inherits": { @@ -56616,7 +56629,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L381-L385" + "specLocation": "_types/query_dsl/specialized.ts#L380-L384" }, { "inherits": { @@ -56644,7 +56657,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L327-L333" + "specLocation": "_types/query_dsl/specialized.ts#L326-L332" }, { "inherits": { @@ -56696,7 +56709,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L335-L349" + "specLocation": "_types/query_dsl/specialized.ts#L334-L348" }, { "inherits": { @@ -56795,7 +56808,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L351-L364" + "specLocation": "_types/query_dsl/specialized.ts#L350-L363" }, { "kind": "interface", @@ -56841,7 +56854,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L366-L379" + "specLocation": "_types/query_dsl/specialized.ts#L365-L378" }, { "inherits": { @@ -58219,7 +58232,7 @@ } } ], - "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L27-L32" + "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L25-L30" }, { "inherits": { @@ -58477,7 +58490,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L67-L102" + "specLocation": "_types/aggregations/bucket.ts#L72-L107" }, { "kind": "enum", @@ -58505,7 +58518,7 @@ "name": "MinimumInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L104-L111" + "specLocation": "_types/aggregations/bucket.ts#L109-L116" }, { "description": "A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a\nnumber of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string\nrepresentation.", @@ -59377,7 +59390,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1045-L1109" + "specLocation": "_types/aggregations/bucket.ts#L1050-L1114" }, { "codegenNames": [ @@ -59389,7 +59402,7 @@ "name": "CategorizeTextAnalyzer", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1111-L1114", + "specLocation": "_types/aggregations/bucket.ts#L1116-L1119", "type": { "items": [ { @@ -59457,7 +59470,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1116-L1120" + "specLocation": "_types/aggregations/bucket.ts#L1121-L1125" }, { "inherits": { @@ -59485,7 +59498,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L113-L118" + "specLocation": "_types/aggregations/bucket.ts#L118-L123" }, { "inherits": { @@ -59552,7 +59565,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L122-L138" + "specLocation": "_types/aggregations/bucket.ts#L127-L143" }, { "kind": "type_alias", @@ -59560,7 +59573,7 @@ "name": "CompositeAggregateKey", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L120-L120", + "specLocation": "_types/aggregations/bucket.ts#L125-L125", "type": { "key": { "kind": "instance_of", @@ -59636,7 +59649,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L140-L157" + "specLocation": "_types/aggregations/bucket.ts#L145-L162" }, { "inherits": { @@ -59651,7 +59664,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L170-L170" + "specLocation": "_types/aggregations/bucket.ts#L175-L175" }, { "kind": "interface", @@ -59729,7 +59742,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L159-L168" + "specLocation": "_types/aggregations/bucket.ts#L164-L173" }, { "kind": "enum", @@ -59815,7 +59828,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L172-L174" + "specLocation": "_types/aggregations/bucket.ts#L177-L179" }, { "inherits": { @@ -59888,7 +59901,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L176-L184" + "specLocation": "_types/aggregations/bucket.ts#L181-L189" }, { "description": "A date histogram interval. Similar to `Duration` with additional units: `w` (week), `M` (month), `q` (quarter) and\n`y` (year)", @@ -59973,7 +59986,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L186-L189" + "specLocation": "_types/aggregations/bucket.ts#L191-L194" }, { "inherits": { @@ -60225,7 +60238,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L191-L249" + "specLocation": "_types/aggregations/bucket.ts#L196-L254" }, { "kind": "enum", @@ -60283,7 +60296,7 @@ "name": "CalendarInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L251-L268" + "specLocation": "_types/aggregations/bucket.ts#L256-L273" }, { "generics": [ @@ -60323,7 +60336,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L491-L500" + "specLocation": "_types/aggregations/bucket.ts#L496-L505" }, { "kind": "type_alias", @@ -60331,7 +60344,7 @@ "name": "AggregateOrder", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L983-L985", + "specLocation": "_types/aggregations/bucket.ts#L988-L990", "type": { "items": [ { @@ -60466,7 +60479,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L270-L296" + "specLocation": "_types/aggregations/bucket.ts#L275-L301" }, { "kind": "interface", @@ -60512,7 +60525,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L307-L320" + "specLocation": "_types/aggregations/bucket.ts#L312-L325" }, { "codegenNames": [ @@ -60525,7 +60538,7 @@ "name": "FieldDateMath", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L298-L305", + "specLocation": "_types/aggregations/bucket.ts#L303-L310", "type": { "items": [ { @@ -60652,7 +60665,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L322-L343" + "specLocation": "_types/aggregations/bucket.ts#L327-L348" }, { "kind": "enum", @@ -60674,7 +60687,7 @@ "name": "SamplerAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L345-L358" + "specLocation": "_types/aggregations/bucket.ts#L350-L363" }, { "inherits": { @@ -60806,7 +60819,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1167-L1191" + "specLocation": "_types/aggregations/bucket.ts#L1172-L1196" }, { "kind": "interface", @@ -60851,7 +60864,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1153-L1165" + "specLocation": "_types/aggregations/bucket.ts#L1158-L1170" }, { "codegenNames": [ @@ -60863,7 +60876,7 @@ "name": "TermsExclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1008-L1009", + "specLocation": "_types/aggregations/bucket.ts#L1013-L1014", "type": { "items": [ { @@ -60898,7 +60911,7 @@ "name": "TermsInclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1005-L1006", + "specLocation": "_types/aggregations/bucket.ts#L1010-L1011", "type": { "items": [ { @@ -60961,7 +60974,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1011-L1020" + "specLocation": "_types/aggregations/bucket.ts#L1016-L1025" }, { "inherits": { @@ -61036,7 +61049,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L360-L380" + "specLocation": "_types/aggregations/bucket.ts#L365-L385" }, { "codegenNames": [ @@ -61236,7 +61249,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L382-L405" + "specLocation": "_types/aggregations/bucket.ts#L387-L410" }, { "kind": "interface", @@ -61282,7 +61295,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L674-L687" + "specLocation": "_types/aggregations/bucket.ts#L679-L692" }, { "inherits": { @@ -61360,7 +61373,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L407-L432" + "specLocation": "_types/aggregations/bucket.ts#L412-L437" }, { "codegenNames": [ @@ -61586,7 +61599,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L434-L460" + "specLocation": "_types/aggregations/bucket.ts#L439-L465" }, { "kind": "type_alias", @@ -61679,7 +61692,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L462-L487" + "specLocation": "_types/aggregations/bucket.ts#L467-L492" }, { "inherits": { @@ -61694,7 +61707,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L489-L489" + "specLocation": "_types/aggregations/bucket.ts#L494-L494" }, { "inherits": { @@ -61859,7 +61872,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L502-L548" + "specLocation": "_types/aggregations/bucket.ts#L507-L553" }, { "inherits": { @@ -61902,7 +61915,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L550-L559" + "specLocation": "_types/aggregations/bucket.ts#L555-L564" }, { "kind": "interface", @@ -61972,7 +61985,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L561-L574" + "specLocation": "_types/aggregations/bucket.ts#L566-L579" }, { "inherits": { @@ -62063,7 +62076,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1122-L1151" + "specLocation": "_types/aggregations/bucket.ts#L1127-L1156" }, { "inherits": { @@ -62458,7 +62471,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L576-L582" + "specLocation": "_types/aggregations/bucket.ts#L581-L587" }, { "kind": "type_alias", @@ -63116,7 +63129,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L584-L624" + "specLocation": "_types/aggregations/bucket.ts#L589-L629" }, { "kind": "enum", @@ -63134,7 +63147,7 @@ "name": "TermsAggregationCollectMode", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L987-L996" + "specLocation": "_types/aggregations/bucket.ts#L992-L1001" }, { "kind": "interface", @@ -63168,7 +63181,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L626-L636" + "specLocation": "_types/aggregations/bucket.ts#L631-L641" }, { "inherits": { @@ -63196,7 +63209,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L638-L643" + "specLocation": "_types/aggregations/bucket.ts#L643-L648" }, { "inherits": { @@ -63287,7 +63300,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L645-L650" + "specLocation": "_types/aggregations/bucket.ts#L650-L655" }, { "inherits": { @@ -63599,7 +63612,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L652-L672" + "specLocation": "_types/aggregations/bucket.ts#L657-L677" }, { "inherits": { @@ -63700,7 +63713,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L689-L719" + "specLocation": "_types/aggregations/bucket.ts#L694-L724" }, { "inherits": { @@ -63787,7 +63800,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L721-L727" + "specLocation": "_types/aggregations/bucket.ts#L726-L732" }, { "inherits": { @@ -63816,7 +63829,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L729-L735" + "specLocation": "_types/aggregations/bucket.ts#L734-L740" }, { "inherits": { @@ -64124,7 +64137,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L772-L836" + "specLocation": "_types/aggregations/bucket.ts#L777-L841" }, { "kind": "interface", @@ -64158,7 +64171,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L737-L746" + "specLocation": "_types/aggregations/bucket.ts#L742-L751" }, { "kind": "enum", @@ -64180,7 +64193,7 @@ "name": "TermsAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L998-L1003" + "specLocation": "_types/aggregations/bucket.ts#L1003-L1008" }, { "kind": "interface", @@ -64202,7 +64215,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L748-L753" + "specLocation": "_types/aggregations/bucket.ts#L753-L758" }, { "kind": "interface", @@ -64236,7 +64249,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L755-L764" + "specLocation": "_types/aggregations/bucket.ts#L760-L769" }, { "kind": "interface", @@ -64245,7 +64258,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L766-L766" + "specLocation": "_types/aggregations/bucket.ts#L771-L771" }, { "kind": "interface", @@ -64266,7 +64279,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L768-L770" + "specLocation": "_types/aggregations/bucket.ts#L773-L775" }, { "inherits": { @@ -64487,7 +64500,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L838-L910" + "specLocation": "_types/aggregations/bucket.ts#L843-L915" }, { "inherits": { @@ -64794,7 +64807,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L912-L977" + "specLocation": "_types/aggregations/bucket.ts#L917-L982" }, { "inherits": { @@ -65418,7 +65431,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1022-L1043" + "specLocation": "_types/aggregations/bucket.ts#L1027-L1048" }, { "kind": "interface", @@ -65742,7 +65755,7 @@ "name": "SortResults", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L107-L107", + "specLocation": "_types/sort.ts#L106-L106", "type": { "kind": "array_of", "value": { @@ -77118,7 +77131,7 @@ "name": "NoriDecompoundMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L75-L79" + "specLocation": "_types/analysis/tokenizers.ts#L74-L78" }, { "kind": "interface", @@ -79847,7 +79860,7 @@ "name": "DelimitedPayloadEncoding", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L62-L66" + "specLocation": "_types/analysis/token_filters.ts#L61-L65" }, { "kind": "enum", @@ -79863,7 +79876,7 @@ "name": "EdgeNGramSide", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L74-L77" + "specLocation": "_types/analysis/token_filters.ts#L73-L76" }, { "kind": "enum", @@ -79968,7 +79981,7 @@ "name": "KeepTypesMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L215-L218" + "specLocation": "_types/analysis/token_filters.ts#L214-L217" }, { "docId": "analysis-normalizers", @@ -80209,7 +80222,7 @@ "name": "SynonymFormat", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L105-L108" + "specLocation": "_types/analysis/token_filters.ts#L104-L107" }, { "kind": "enum", @@ -80237,7 +80250,7 @@ "name": "TokenChar", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L47-L54" + "specLocation": "_types/analysis/tokenizers.ts#L46-L53" }, { "codegenNames": [ @@ -80249,7 +80262,7 @@ "name": "TokenFilter", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L346-L348", + "specLocation": "_types/analysis/token_filters.ts#L345-L347", "type": { "items": [ { @@ -80276,7 +80289,7 @@ "name": "TokenFilterDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L350-L402", + "specLocation": "_types/analysis/token_filters.ts#L349-L401", "type": { "items": [ { @@ -80659,7 +80672,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L170-L173" + "specLocation": "_types/analysis/token_filters.ts#L169-L172" }, { "kind": "interface", @@ -80680,7 +80693,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L40-L42" + "specLocation": "_types/analysis/token_filters.ts#L39-L41" }, { "inherits": { @@ -80751,7 +80764,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L175-L181" + "specLocation": "_types/analysis/token_filters.ts#L174-L180" }, { "inherits": { @@ -80800,7 +80813,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L183-L187" + "specLocation": "_types/analysis/token_filters.ts#L182-L186" }, { "inherits": { @@ -80846,7 +80859,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L68-L72" + "specLocation": "_types/analysis/token_filters.ts#L67-L71" }, { "inherits": { @@ -80923,7 +80936,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L79-L85" + "specLocation": "_types/analysis/token_filters.ts#L78-L84" }, { "inherits": { @@ -80992,7 +81005,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L189-L194" + "specLocation": "_types/analysis/token_filters.ts#L188-L193" }, { "inherits": { @@ -81038,7 +81051,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L196-L200" + "specLocation": "_types/analysis/token_filters.ts#L195-L199" }, { "inherits": { @@ -81106,7 +81119,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L202-L208" + "specLocation": "_types/analysis/token_filters.ts#L201-L207" }, { "inherits": { @@ -81130,7 +81143,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L58-L60" + "specLocation": "_types/analysis/token_filters.ts#L57-L59" }, { "inherits": { @@ -81226,7 +81239,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L44-L52" + "specLocation": "_types/analysis/token_filters.ts#L43-L51" }, { "inherits": { @@ -81275,7 +81288,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L220-L224" + "specLocation": "_types/analysis/token_filters.ts#L219-L223" }, { "inherits": { @@ -81335,7 +81348,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L226-L231" + "specLocation": "_types/analysis/token_filters.ts#L225-L230" }, { "inherits": { @@ -81406,7 +81419,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L233-L239" + "specLocation": "_types/analysis/token_filters.ts#L232-L238" }, { "inherits": { @@ -81430,7 +81443,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L241-L243" + "specLocation": "_types/analysis/token_filters.ts#L240-L242" }, { "inherits": { @@ -81476,7 +81489,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L245-L249" + "specLocation": "_types/analysis/token_filters.ts#L244-L248" }, { "inherits": { @@ -81531,7 +81544,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L251-L255" + "specLocation": "_types/analysis/token_filters.ts#L250-L254" }, { "inherits": { @@ -81566,7 +81579,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L257-L260" + "specLocation": "_types/analysis/token_filters.ts#L256-L259" }, { "inherits": { @@ -81624,7 +81637,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L262-L266" + "specLocation": "_types/analysis/token_filters.ts#L261-L265" }, { "inherits": { @@ -81690,7 +81703,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L268-L273" + "specLocation": "_types/analysis/token_filters.ts#L267-L272" }, { "inherits": { @@ -81728,7 +81741,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L275-L278" + "specLocation": "_types/analysis/token_filters.ts#L274-L277" }, { "inherits": { @@ -81786,7 +81799,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L280-L284" + "specLocation": "_types/analysis/token_filters.ts#L279-L283" }, { "inherits": { @@ -81854,7 +81867,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L286-L292" + "specLocation": "_types/analysis/token_filters.ts#L285-L291" }, { "inherits": { @@ -81878,7 +81891,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L294-L296" + "specLocation": "_types/analysis/token_filters.ts#L293-L295" }, { "inherits": { @@ -81913,7 +81926,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L298-L301" + "specLocation": "_types/analysis/token_filters.ts#L297-L300" }, { "inherits": { @@ -81937,7 +81950,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L303-L305" + "specLocation": "_types/analysis/token_filters.ts#L302-L304" }, { "inherits": { @@ -81961,7 +81974,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L307-L309" + "specLocation": "_types/analysis/token_filters.ts#L306-L308" }, { "inherits": { @@ -82075,7 +82088,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L87-L95" + "specLocation": "_types/analysis/token_filters.ts#L86-L94" }, { "inherits": { @@ -82110,7 +82123,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L311-L314" + "specLocation": "_types/analysis/token_filters.ts#L310-L313" }, { "inherits": { @@ -82159,7 +82172,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L316-L320" + "specLocation": "_types/analysis/token_filters.ts#L315-L319" }, { "inherits": { @@ -82197,7 +82210,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L322-L326" + "specLocation": "_types/analysis/token_filters.ts#L321-L325" }, { "inherits": { @@ -82265,7 +82278,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L97-L103" + "specLocation": "_types/analysis/token_filters.ts#L96-L102" }, { "inherits": { @@ -82380,7 +82393,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L110-L120" + "specLocation": "_types/analysis/token_filters.ts#L109-L119" }, { "inherits": { @@ -82495,7 +82508,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L122-L132" + "specLocation": "_types/analysis/token_filters.ts#L121-L131" }, { "inherits": { @@ -82519,7 +82532,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L328-L330" + "specLocation": "_types/analysis/token_filters.ts#L327-L329" }, { "inherits": { @@ -82554,7 +82567,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L332-L335" + "specLocation": "_types/analysis/token_filters.ts#L331-L334" }, { "inherits": { @@ -82589,7 +82602,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L337-L340" + "specLocation": "_types/analysis/token_filters.ts#L336-L339" }, { "inherits": { @@ -82613,7 +82626,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L342-L344" + "specLocation": "_types/analysis/token_filters.ts#L341-L343" }, { "inherits": { @@ -82817,7 +82830,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L151-L168" + "specLocation": "_types/analysis/token_filters.ts#L150-L167" }, { "inherits": { @@ -82999,7 +83012,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L134-L149" + "specLocation": "_types/analysis/token_filters.ts#L133-L148" }, { "inherits": { @@ -83508,7 +83521,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L54-L56" + "specLocation": "_types/analysis/token_filters.ts#L53-L55" }, { "codegenNames": [ @@ -83520,7 +83533,7 @@ "name": "Tokenizer", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L120-L122", + "specLocation": "_types/analysis/tokenizers.ts#L119-L121", "type": { "items": [ { @@ -83547,7 +83560,7 @@ "name": "TokenizerDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L124-L142", + "specLocation": "_types/analysis/tokenizers.ts#L123-L141", "type": { "items": [ { @@ -83704,7 +83717,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L56-L60" + "specLocation": "_types/analysis/tokenizers.ts#L55-L59" }, { "kind": "interface", @@ -83725,7 +83738,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L27-L29" + "specLocation": "_types/analysis/tokenizers.ts#L26-L28" }, { "inherits": { @@ -83796,7 +83809,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L31-L37" + "specLocation": "_types/analysis/tokenizers.ts#L30-L36" }, { "inherits": { @@ -83831,7 +83844,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L62-L65" + "specLocation": "_types/analysis/tokenizers.ts#L61-L64" }, { "inherits": { @@ -83855,7 +83868,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L67-L69" + "specLocation": "_types/analysis/tokenizers.ts#L66-L68" }, { "inherits": { @@ -83879,7 +83892,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L71-L73" + "specLocation": "_types/analysis/tokenizers.ts#L70-L72" }, { "inherits": { @@ -83950,7 +83963,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L39-L45" + "specLocation": "_types/analysis/tokenizers.ts#L38-L44" }, { "inherits": { @@ -84021,7 +84034,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L81-L87" + "specLocation": "_types/analysis/tokenizers.ts#L80-L86" }, { "inherits": { @@ -84127,7 +84140,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L89-L96" + "specLocation": "_types/analysis/tokenizers.ts#L88-L95" }, { "inherits": { @@ -84162,7 +84175,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L105-L108" + "specLocation": "_types/analysis/tokenizers.ts#L104-L107" }, { "inherits": { @@ -84197,7 +84210,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L110-L113" + "specLocation": "_types/analysis/tokenizers.ts#L109-L112" }, { "inherits": { @@ -84232,7 +84245,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L115-L118" + "specLocation": "_types/analysis/tokenizers.ts#L114-L117" }, { "inherits": { @@ -84393,7 +84406,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L98-L103" + "specLocation": "_types/analysis/tokenizers.ts#L97-L102" }, { "inherits": { @@ -90010,7 +90023,7 @@ "name": "FollowerIndexStatus", "namespace": "ccr.follow_info" }, - "specLocation": "ccr/follow_info/types.ts#L30-L33" + "specLocation": "ccr/follow_info/types.ts#L32-L35" }, { "kind": "enum", @@ -92498,7 +92511,7 @@ "name": "ShardStoreAllocation", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L48-L52" + "specLocation": "indices/shard_stores/types.ts#L47-L51" }, { "kind": "enum", @@ -92524,7 +92537,7 @@ "name": "ShardStoreStatus", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L63-L72" + "specLocation": "indices/shard_stores/types.ts#L62-L71" }, { "kind": "enum", @@ -92702,7 +92715,7 @@ "name": "ConvertType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L507-L515" + "specLocation": "ingest/_types/Processors.ts#L524-L532" }, { "kind": "enum", @@ -92755,7 +92768,7 @@ "name": "JsonProcessorConflictStrategy", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L939-L944" + "specLocation": "ingest/_types/Processors.ts#L963-L968" }, { "kind": "enum", @@ -92771,7 +92784,7 @@ "name": "ShapeType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L1164-L1167" + "specLocation": "ingest/_types/Processors.ts#L1188-L1191" }, { "kind": "enum", @@ -93159,7 +93172,7 @@ "name": "DeploymentAllocationState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L289-L302" + "specLocation": "ml/_types/TrainedModel.ts#L288-L301" }, { "kind": "enum", @@ -93181,7 +93194,7 @@ "name": "DeploymentAssignmentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L304-L309" + "specLocation": "ml/_types/TrainedModel.ts#L303-L308" }, { "kind": "enum", @@ -93203,7 +93216,7 @@ "name": "DeploymentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L274-L287" + "specLocation": "ml/_types/TrainedModel.ts#L273-L286" }, { "kind": "enum", @@ -93399,7 +93412,7 @@ "name": "RoutingState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L351-L372" + "specLocation": "ml/_types/TrainedModel.ts#L350-L371" }, { "kind": "enum", @@ -93480,7 +93493,7 @@ "name": "TrainedModelType", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L258-L272" + "specLocation": "ml/_types/TrainedModel.ts#L257-L271" }, { "kind": "enum", @@ -93496,7 +93509,7 @@ "name": "TrainingPriority", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L311-L314" + "specLocation": "ml/_types/TrainedModel.ts#L310-L313" }, { "codegenNames": [ @@ -101290,7 +101303,7 @@ "name": "UserProfileId", "namespace": "security._types" }, - "specLocation": "security/_types/UserProfile.ts#L26-L26", + "specLocation": "security/_types/UserProfile.ts#L25-L25", "type": { "kind": "instance_of", "type": { @@ -101421,7 +101434,7 @@ "name": "ApiKeyAggregate", "namespace": "security.query_api_keys" }, - "specLocation": "security/query_api_keys/types.ts#L123-L140", + "specLocation": "security/query_api_keys/types.ts#L122-L139", "type": { "items": [ { @@ -102733,7 +102746,7 @@ "name": "AcknowledgementOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L109-L113" + "specLocation": "watcher/_types/Action.ts#L103-L107" }, { "kind": "enum", @@ -102763,7 +102776,7 @@ "name": "ActionExecutionMode", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L73-L94" + "specLocation": "watcher/_types/Action.ts#L67-L88" }, { "kind": "enum", @@ -102785,7 +102798,7 @@ "name": "ActionStatusOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L102-L107" + "specLocation": "watcher/_types/Action.ts#L96-L101" }, { "kind": "enum", @@ -102813,7 +102826,7 @@ "name": "ActionType", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L64-L71" + "specLocation": "watcher/_types/Action.ts#L58-L65" }, { "kind": "type_alias", @@ -102821,7 +102834,7 @@ "name": "Actions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L62-L62", + "specLocation": "watcher/_types/Action.ts#L56-L56", "type": { "key": { "kind": "instance_of", @@ -102893,7 +102906,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L131-L136" + "specLocation": "watcher/_types/Action.ts#L125-L130" }, { "kind": "interface", @@ -102925,7 +102938,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L115-L118" + "specLocation": "watcher/_types/Action.ts#L109-L112" }, { "kind": "interface", @@ -102968,7 +102981,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L120-L124" + "specLocation": "watcher/_types/Action.ts#L114-L118" }, { "kind": "interface", @@ -103000,7 +103013,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L126-L129" + "specLocation": "watcher/_types/Action.ts#L120-L123" }, { "kind": "enum", @@ -109597,7 +109610,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L30-L33" + "specLocation": "cluster/_types/ComponentTemplate.ts#L27-L30" }, { "kind": "interface", @@ -109642,7 +109655,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L35-L40" + "specLocation": "cluster/_types/ComponentTemplate.ts#L32-L37" }, { "kind": "interface", @@ -109751,7 +109764,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L42-L54" + "specLocation": "cluster/_types/ComponentTemplate.ts#L39-L51" }, { "attachedBehaviors": [ @@ -115379,7 +115392,7 @@ } } ], - "specLocation": "eql/_types/EqlSearchResponseBase.ts#L25-L50" + "specLocation": "eql/_types/EqlSearchResponseBase.ts#L24-L49" }, { "generics": [ @@ -117523,7 +117536,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L31-L70" + "specLocation": "indices/_types/IndexTemplate.ts#L28-L67" }, { "kind": "interface", @@ -117600,7 +117613,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L85-L107" + "specLocation": "indices/_types/IndexTemplate.ts#L82-L104" }, { "kind": "interface", @@ -117636,7 +117649,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L72-L83" + "specLocation": "indices/_types/IndexTemplate.ts#L69-L80" }, { "kind": "interface", @@ -119167,6 +119180,19 @@ } } }, + { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "name": "deprecated", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } + }, { "description": "Arbitrary metadata about the ingest pipeline. This map is not automatically generated by Elasticsearch.", "name": "_meta", @@ -119180,7 +119206,7 @@ } } ], - "specLocation": "ingest/_types/Pipeline.ts#L23-L45" + "specLocation": "ingest/_types/Pipeline.ts#L23-L51" }, { "kind": "interface", @@ -119756,10 +119782,18 @@ "name": "value", "required": true, "type": { - "kind": "array_of", - "value": { - "kind": "user_defined_value" - } + "items": [ + { + "kind": "user_defined_value" + }, + { + "kind": "array_of", + "value": { + "kind": "user_defined_value" + } + } + ], + "kind": "union_of" } }, { @@ -120023,7 +120057,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L464-L480" + "specLocation": "ingest/_types/Processors.ts#L481-L497" }, { "inherits": { @@ -120100,7 +120134,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L482-L505" + "specLocation": "ingest/_types/Processors.ts#L499-L522" }, { "inherits": { @@ -120166,7 +120200,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L517-L537" + "specLocation": "ingest/_types/Processors.ts#L534-L554" }, { "inherits": { @@ -120264,7 +120298,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L539-L572" + "specLocation": "ingest/_types/Processors.ts#L556-L589" }, { "inherits": { @@ -120346,7 +120380,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L614-L641" + "specLocation": "ingest/_types/Processors.ts#L631-L658" }, { "inherits": { @@ -120452,7 +120486,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L574-L612" + "specLocation": "ingest/_types/Processors.ts#L591-L629" }, { "inherits": { @@ -120518,7 +120552,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L643-L662" + "specLocation": "ingest/_types/Processors.ts#L660-L679" }, { "inherits": { @@ -120545,6 +120579,19 @@ } } }, + { + "description": "Controls the behavior when there is already an existing nested object that conflicts with the expanded field.\nWhen `false`, the processor will merge conflicts by combining the old and the new values into an array.\nWhen `true`, the value from the expanded field will overwrite the existing value.", + "name": "override", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } + }, { "description": "The field that contains the field to expand.\nOnly required if the field to expand is part another object field, because the `field` option can only understand leaf fields.", "name": "path", @@ -120558,7 +120605,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L664-L675" + "specLocation": "ingest/_types/Processors.ts#L681-L699" }, { "inherits": { @@ -120573,7 +120620,7 @@ "namespace": "ingest._types" }, "properties": [], - "specLocation": "ingest/_types/Processors.ts#L677-L677" + "specLocation": "ingest/_types/Processors.ts#L701-L701" }, { "inherits": { @@ -120677,7 +120724,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L679-L718" + "specLocation": "ingest/_types/Processors.ts#L703-L742" }, { "inherits": { @@ -120705,7 +120752,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L720-L726" + "specLocation": "ingest/_types/Processors.ts#L744-L750" }, { "inherits": { @@ -120758,7 +120805,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L728-L742" + "specLocation": "ingest/_types/Processors.ts#L752-L766" }, { "inherits": { @@ -120978,9 +121025,21 @@ "namespace": "_types" } } + }, + { + "description": "If `true` (and if `ingest.geoip.downloader.eager.download` is `false`), the missing database is downloaded when the pipeline is created.\nElse, the download is triggered by when the pipeline is used as the `default_pipeline` or `final_pipeline` in an index.", + "name": "download_database_on_pipeline_creation", + "required": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ], - "specLocation": "ingest/_types/Processors.ts#L411-L440" + "specLocation": "ingest/_types/Processors.ts#L411-L445" }, { "inherits": { @@ -121072,7 +121131,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L744-L769" + "specLocation": "ingest/_types/Processors.ts#L768-L793" }, { "inherits": { @@ -121150,7 +121209,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L771-L795" + "specLocation": "ingest/_types/Processors.ts#L795-L819" }, { "inherits": { @@ -121204,7 +121263,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L797-L813" + "specLocation": "ingest/_types/Processors.ts#L821-L837" }, { "inherits": { @@ -121276,7 +121335,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L815-L834" + "specLocation": "ingest/_types/Processors.ts#L839-L858" }, { "kind": "interface", @@ -121310,7 +121369,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L836-L848", + "specLocation": "ingest/_types/Processors.ts#L860-L872", "variants": { "kind": "container" } @@ -121349,7 +121408,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L850-L861" + "specLocation": "ingest/_types/Processors.ts#L874-L885" }, { "kind": "interface", @@ -121423,7 +121482,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L863-L889" + "specLocation": "ingest/_types/Processors.ts#L887-L913" }, { "inherits": { @@ -121476,7 +121535,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L891-L906" + "specLocation": "ingest/_types/Processors.ts#L915-L930" }, { "inherits": { @@ -121555,7 +121614,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L908-L937" + "specLocation": "ingest/_types/Processors.ts#L932-L961" }, { "inherits": { @@ -121712,7 +121771,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L946-L998" + "specLocation": "ingest/_types/Processors.ts#L970-L1022" }, { "inherits": { @@ -121766,7 +121825,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1000-L1016" + "specLocation": "ingest/_types/Processors.ts#L1024-L1040" }, { "inherits": { @@ -121807,7 +121866,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1018-L1029" + "specLocation": "ingest/_types/Processors.ts#L1042-L1053" }, { "inherits": { @@ -121860,7 +121919,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1031-L1045" + "specLocation": "ingest/_types/Processors.ts#L1055-L1069" }, { "inherits": { @@ -121913,7 +121972,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1047-L1063" + "specLocation": "ingest/_types/Processors.ts#L1071-L1087" }, { "inherits": { @@ -121995,7 +122054,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1065-L1093" + "specLocation": "ingest/_types/Processors.ts#L1089-L1117" }, { "inherits": { @@ -122067,7 +122126,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1095-L1115" + "specLocation": "ingest/_types/Processors.ts#L1119-L1139" }, { "inherits": { @@ -122153,7 +122212,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1117-L1151" + "specLocation": "ingest/_types/Processors.ts#L1141-L1175" }, { "inherits": { @@ -122196,7 +122255,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1153-L1162" + "specLocation": "ingest/_types/Processors.ts#L1177-L1186" }, { "inherits": { @@ -122249,7 +122308,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1169-L1185" + "specLocation": "ingest/_types/Processors.ts#L1193-L1209" }, { "inherits": { @@ -122328,7 +122387,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1187-L1212" + "specLocation": "ingest/_types/Processors.ts#L1211-L1236" }, { "inherits": { @@ -122382,7 +122441,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1214-L1230" + "specLocation": "ingest/_types/Processors.ts#L1238-L1254" }, { "inherits": { @@ -122436,7 +122495,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1232-L1248" + "specLocation": "ingest/_types/Processors.ts#L1256-L1272" }, { "inherits": { @@ -122490,7 +122549,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1250-L1266" + "specLocation": "ingest/_types/Processors.ts#L1274-L1290" }, { "inherits": { @@ -122570,7 +122629,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1268-L1294" + "specLocation": "ingest/_types/Processors.ts#L1292-L1318" }, { "inherits": { @@ -122648,9 +122707,56 @@ "namespace": "_types" } } + }, + { + "description": "Controls what properties are added to `target_field`.", + "name": "properties", + "required": false, + "serverDefault": [ + "name", + "major", + "minor", + "patch", + "build", + "os", + "os_name", + "os_major", + "os_minor", + "device" + ], + "type": { + "kind": "array_of", + "value": { + "kind": "instance_of", + "type": { + "name": "string", + "namespace": "_builtins" + } + } + } + }, + { + "availability": { + "serverless": {}, + "stack": { + "since": "8.9.0", + "stability": "beta" + } + }, + "description": "Extracts device type from the user agent string on a best-effort basis.", + "name": "extract_device_type", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ], - "specLocation": "ingest/_types/Processors.ts#L442-L462" + "specLocation": "ingest/_types/Processors.ts#L447-L479" }, { "kind": "interface", @@ -125405,7 +125511,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L306-L322" + "specLocation": "ml/_types/DataframeAnalytics.ts#L305-L321" }, { "kind": "interface", @@ -125457,7 +125563,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L84-L101", + "specLocation": "ml/_types/DataframeAnalytics.ts#L83-L100", "variants": { "kind": "container" } @@ -125500,7 +125606,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L227-L236" + "specLocation": "ml/_types/DataframeAnalytics.ts#L226-L235" }, { "kind": "interface", @@ -125735,7 +125841,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L134-L213" + "specLocation": "ml/_types/DataframeAnalytics.ts#L133-L212" }, { "kind": "interface", @@ -125805,7 +125911,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L246-L258", + "specLocation": "ml/_types/DataframeAnalytics.ts#L245-L257", "variants": { "kind": "container" } @@ -125864,7 +125970,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L260-L267" + "specLocation": "ml/_types/DataframeAnalytics.ts#L259-L266" }, { "kind": "interface", @@ -125889,7 +125995,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L269-L272" + "specLocation": "ml/_types/DataframeAnalytics.ts#L268-L271" }, { "kind": "interface", @@ -125973,7 +126079,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L274-L286" + "specLocation": "ml/_types/DataframeAnalytics.ts#L273-L285" }, { "kind": "interface", @@ -126007,7 +126113,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L288-L293" + "specLocation": "ml/_types/DataframeAnalytics.ts#L287-L292" }, { "kind": "interface", @@ -126072,7 +126178,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L295-L304" + "specLocation": "ml/_types/DataframeAnalytics.ts#L294-L303" }, { "kind": "interface", @@ -126158,7 +126264,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L103-L132" + "specLocation": "ml/_types/DataframeAnalytics.ts#L102-L131" }, { "inherits": { @@ -126199,7 +126305,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L215-L225" + "specLocation": "ml/_types/DataframeAnalytics.ts#L214-L224" }, { "kind": "interface", @@ -126240,7 +126346,7 @@ } ], "shortcutProperty": "includes", - "specLocation": "ml/_types/DataframeAnalytics.ts#L238-L244" + "specLocation": "ml/_types/DataframeAnalytics.ts#L237-L243" }, { "kind": "interface", @@ -126357,7 +126463,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L77-L82" + "specLocation": "ml/_types/DataframeAnalytics.ts#L76-L81" }, { "kind": "interface", @@ -126417,7 +126523,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L39-L53" + "specLocation": "ml/_types/DataframeAnalytics.ts#L38-L52" }, { "kind": "interface", @@ -126514,7 +126620,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L324-L344" + "specLocation": "ml/_types/DataframeAnalytics.ts#L323-L343" }, { "kind": "interface", @@ -126560,7 +126666,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L373-L381", + "specLocation": "ml/_types/DataframeAnalytics.ts#L372-L380", "variants": { "kind": "container" } @@ -126642,7 +126748,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L383-L402" + "specLocation": "ml/_types/DataframeAnalytics.ts#L382-L401" }, { "kind": "interface", @@ -126820,7 +126926,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L419-L525" + "specLocation": "ml/_types/DataframeAnalytics.ts#L418-L524" }, { "kind": "interface", @@ -126872,7 +126978,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L563-L568" + "specLocation": "ml/_types/DataframeAnalytics.ts#L562-L567" }, { "kind": "interface", @@ -126909,7 +127015,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L570-L575" + "specLocation": "ml/_types/DataframeAnalytics.ts#L569-L574" }, { "kind": "interface", @@ -126964,7 +127070,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L404-L417" + "specLocation": "ml/_types/DataframeAnalytics.ts#L403-L416" }, { "kind": "interface", @@ -127049,7 +127155,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L527-L561" + "specLocation": "ml/_types/DataframeAnalytics.ts#L526-L560" }, { "kind": "interface", @@ -127095,7 +127201,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L364-L371" + "specLocation": "ml/_types/DataframeAnalytics.ts#L363-L370" }, { "kind": "interface", @@ -127162,7 +127268,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L353-L362" + "specLocation": "ml/_types/DataframeAnalytics.ts#L352-L361" }, { "kind": "interface", @@ -127196,7 +127302,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L346-L351" + "specLocation": "ml/_types/DataframeAnalytics.ts#L345-L350" }, { "kind": "interface", @@ -129403,7 +129509,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L130-L145" + "specLocation": "ml/_types/Bucket.ts#L129-L144" }, { "kind": "interface", @@ -129435,7 +129541,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L146-L149" + "specLocation": "ml/_types/Bucket.ts#L145-L148" }, { "kind": "interface", @@ -129683,7 +129789,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L165-L200" + "specLocation": "ml/_types/TrainedModel.ts#L164-L199" }, { "description": "Inference configuration provided when storing the model config", @@ -130585,7 +130691,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L202-L205" + "specLocation": "ml/_types/TrainedModel.ts#L201-L204" }, { "kind": "interface", @@ -130662,7 +130768,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L207-L215" + "specLocation": "ml/_types/TrainedModel.ts#L206-L214" }, { "kind": "interface", @@ -130734,7 +130840,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L217-L231" + "specLocation": "ml/_types/TrainedModel.ts#L216-L230" }, { "kind": "interface", @@ -130786,7 +130892,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L233-L240" + "specLocation": "ml/_types/TrainedModel.ts#L232-L239" }, { "kind": "interface", @@ -130832,7 +130938,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L249-L256" + "specLocation": "ml/_types/TrainedModel.ts#L248-L255" }, { "kind": "interface", @@ -130869,7 +130975,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L242-L247" + "specLocation": "ml/_types/TrainedModel.ts#L241-L246" }, { "kind": "interface", @@ -130890,7 +130996,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L420-L422" + "specLocation": "ml/_types/TrainedModel.ts#L419-L421" }, { "kind": "interface", @@ -130911,7 +131017,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L424-L426" + "specLocation": "ml/_types/TrainedModel.ts#L423-L425" }, { "kind": "interface", @@ -130945,7 +131051,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L428-L437" + "specLocation": "ml/_types/TrainedModel.ts#L427-L436" }, { "kind": "interface", @@ -131036,7 +131142,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L42-L60" + "specLocation": "ml/_types/TrainedModel.ts#L41-L59" }, { "kind": "interface", @@ -131237,7 +131343,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L62-L102" + "specLocation": "ml/_types/TrainedModel.ts#L61-L101" }, { "kind": "interface", @@ -131283,7 +131389,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L394-L401" + "specLocation": "ml/_types/TrainedModel.ts#L393-L400" }, { "kind": "interface", @@ -131443,7 +131549,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L133-L163" + "specLocation": "ml/_types/TrainedModel.ts#L132-L162" }, { "kind": "interface", @@ -131501,7 +131607,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L374-L392" + "specLocation": "ml/_types/TrainedModel.ts#L373-L391" }, { "kind": "interface", @@ -131582,7 +131688,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L104-L124" + "specLocation": "ml/_types/TrainedModel.ts#L103-L123" }, { "kind": "interface", @@ -131616,7 +131722,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L126-L131" + "specLocation": "ml/_types/TrainedModel.ts#L125-L130" }, { "kind": "interface", @@ -134034,7 +134140,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L403-L418" + "specLocation": "ml/_types/TrainedModel.ts#L402-L417" }, { "kind": "interface", @@ -134145,7 +134251,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L316-L349" + "specLocation": "ml/_types/TrainedModel.ts#L315-L348" }, { "kind": "interface", @@ -136601,7 +136707,7 @@ } } ], - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L27-L32" }, { "kind": "interface", @@ -136815,7 +136921,7 @@ } } ], - "specLocation": "security/_types/ApiKey.ts#L27-L89" + "specLocation": "security/_types/ApiKey.ts#L26-L88" }, { "kind": "interface", @@ -136932,7 +137038,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L28-L61" + "specLocation": "security/_types/RoleDescriptor.ts#L31-L64" }, { "kind": "interface", @@ -137420,7 +137526,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L64-L121", + "specLocation": "security/query_api_keys/types.ts#L63-L120", "variants": { "kind": "container", "nonExhaustive": true @@ -137643,7 +137749,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L142-L206", + "specLocation": "security/query_api_keys/types.ts#L141-L205", "variants": { "kind": "container", "nonExhaustive": true @@ -137722,7 +137828,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L208-L228" + "specLocation": "security/query_api_keys/types.ts#L207-L227" }, { "kind": "interface", diff --git a/output/schema/schema.json b/output/schema/schema.json index 3cbc4dae14..fdefbb9862 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -26693,7 +26693,7 @@ } } ], - "specLocation": "_global/knn_search/KnnSearchRequest.ts#L27-L80" + "specLocation": "_global/knn_search/KnnSearchRequest.ts#L26-L79" }, { "kind": "response", @@ -33675,7 +33675,7 @@ "name": "BoundaryScanner", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L27-L46" + "specLocation": "_global/search/_types/highlighting.ts#L26-L45" }, { "kind": "interface", @@ -34736,7 +34736,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L153-L156" + "specLocation": "_global/search/_types/highlighting.ts#L152-L155" }, { "kind": "interface", @@ -35020,7 +35020,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L48-L151" + "specLocation": "_global/search/_types/highlighting.ts#L47-L150" }, { "kind": "interface", @@ -35058,7 +35058,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L193-L196" + "specLocation": "_global/search/_types/highlighting.ts#L192-L195" }, { "kind": "enum", @@ -35074,7 +35074,7 @@ "name": "HighlighterEncoder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L158-L161" + "specLocation": "_global/search/_types/highlighting.ts#L157-L160" }, { "kind": "enum", @@ -35090,7 +35090,7 @@ "name": "HighlighterFragmenter", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L163-L166" + "specLocation": "_global/search/_types/highlighting.ts#L162-L165" }, { "kind": "enum", @@ -35103,7 +35103,7 @@ "name": "HighlighterOrder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L168-L170" + "specLocation": "_global/search/_types/highlighting.ts#L167-L169" }, { "kind": "enum", @@ -35116,7 +35116,7 @@ "name": "HighlighterTagsSchema", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L172-L174" + "specLocation": "_global/search/_types/highlighting.ts#L171-L173" }, { "kind": "enum", @@ -35140,7 +35140,7 @@ "name": "HighlighterType", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L176-L191" + "specLocation": "_global/search/_types/highlighting.ts#L175-L190" }, { "kind": "interface", @@ -43016,7 +43016,7 @@ } ], "shortcutProperty": "order", - "specLocation": "_types/sort.ts#L44-L53" + "specLocation": "_types/sort.ts#L43-L52" }, { "kind": "enum", @@ -43038,7 +43038,7 @@ "name": "FieldSortNumericType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L37-L42" + "specLocation": "_types/sort.ts#L36-L41" }, { "kind": "type_alias", @@ -43455,7 +43455,7 @@ } } ], - "specLocation": "_types/sort.ts#L59-L71" + "specLocation": "_types/sort.ts#L58-L70" }, { "kind": "enum", @@ -45405,7 +45405,7 @@ } } ], - "specLocation": "_types/sort.ts#L30-L35" + "specLocation": "_types/sort.ts#L29-L34" }, { "kind": "interface", @@ -46872,7 +46872,7 @@ } } ], - "specLocation": "_types/sort.ts#L55-L57" + "specLocation": "_types/sort.ts#L54-L56" }, { "kind": "interface", @@ -47085,7 +47085,7 @@ } } ], - "specLocation": "_types/sort.ts#L73-L79" + "specLocation": "_types/sort.ts#L72-L78" }, { "kind": "enum", @@ -47104,7 +47104,7 @@ "name": "ScriptSortType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L81-L85" + "specLocation": "_types/sort.ts#L80-L84" }, { "kind": "interface", @@ -48106,7 +48106,7 @@ "name": "Sort", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L105-L105", + "specLocation": "_types/sort.ts#L104-L104", "type": { "kind": "union_of", "items": [ @@ -48140,7 +48140,7 @@ "name": "SortCombinations", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L99-L103", + "specLocation": "_types/sort.ts#L98-L102", "type": { "kind": "union_of", "items": [ @@ -48184,7 +48184,7 @@ "name": "SortMode", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L109-L118" + "specLocation": "_types/sort.ts#L108-L117" }, { "kind": "interface", @@ -48271,7 +48271,7 @@ } } ], - "specLocation": "_types/sort.ts#L87-L97", + "specLocation": "_types/sort.ts#L86-L96", "variants": { "kind": "container" } @@ -48292,7 +48292,7 @@ "name": "SortOrder", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L120-L129" + "specLocation": "_types/sort.ts#L119-L128" }, { "kind": "type_alias", @@ -48300,7 +48300,7 @@ "name": "SortResults", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L107-L107", + "specLocation": "_types/sort.ts#L106-L106", "type": { "kind": "array_of", "value": { @@ -49598,7 +49598,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L55-L65" + "specLocation": "_types/aggregations/bucket.ts#L60-L70" }, { "kind": "interface", @@ -50157,7 +50157,7 @@ "name": "AggregateOrder", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L983-L985", + "specLocation": "_types/aggregations/bucket.ts#L988-L990", "type": { "kind": "union_of", "items": [ @@ -51389,7 +51389,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L674-L687" + "specLocation": "_types/aggregations/bucket.ts#L679-L692" }, { "kind": "interface", @@ -51611,7 +51611,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L67-L102" + "specLocation": "_types/aggregations/bucket.ts#L72-L107" }, { "kind": "interface", @@ -51872,7 +51872,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L48-L53" + "specLocation": "_types/aggregations/bucket.ts#L53-L58" }, { "kind": "interface", @@ -52406,7 +52406,7 @@ "name": "CalendarInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L251-L268" + "specLocation": "_types/aggregations/bucket.ts#L256-L273" }, { "kind": "interface", @@ -52660,7 +52660,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1045-L1109" + "specLocation": "_types/aggregations/bucket.ts#L1050-L1114" }, { "kind": "type_alias", @@ -52672,7 +52672,7 @@ "name": "CategorizeTextAnalyzer", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1111-L1114", + "specLocation": "_types/aggregations/bucket.ts#L1116-L1119", "type": { "kind": "union_of", "items": [ @@ -52725,7 +52725,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L737-L746" + "specLocation": "_types/aggregations/bucket.ts#L742-L751" }, { "kind": "interface", @@ -52772,7 +52772,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L113-L118" + "specLocation": "_types/aggregations/bucket.ts#L118-L123" }, { "kind": "interface", @@ -52817,7 +52817,7 @@ "name": "CompositeAggregateKey", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L120-L120", + "specLocation": "_types/aggregations/bucket.ts#L125-L125", "type": { "kind": "dictionary_of", "key": { @@ -52902,7 +52902,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L122-L138" + "specLocation": "_types/aggregations/bucket.ts#L127-L143" }, { "kind": "interface", @@ -52980,7 +52980,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L159-L168" + "specLocation": "_types/aggregations/bucket.ts#L164-L173" }, { "kind": "interface", @@ -53038,7 +53038,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L140-L157" + "specLocation": "_types/aggregations/bucket.ts#L145-L162" }, { "kind": "interface", @@ -53141,7 +53141,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L176-L184" + "specLocation": "_types/aggregations/bucket.ts#L181-L189" }, { "kind": "interface", @@ -53179,7 +53179,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L186-L189" + "specLocation": "_types/aggregations/bucket.ts#L191-L194" }, { "kind": "interface", @@ -53206,7 +53206,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L172-L174" + "specLocation": "_types/aggregations/bucket.ts#L177-L179" }, { "kind": "interface", @@ -53221,7 +53221,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L170-L170" + "specLocation": "_types/aggregations/bucket.ts#L175-L175" }, { "kind": "interface", @@ -53340,7 +53340,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1116-L1120" + "specLocation": "_types/aggregations/bucket.ts#L1121-L1125" }, { "kind": "interface", @@ -53587,7 +53587,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L191-L249" + "specLocation": "_types/aggregations/bucket.ts#L196-L254" }, { "kind": "interface", @@ -53745,7 +53745,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L270-L296" + "specLocation": "_types/aggregations/bucket.ts#L275-L301" }, { "kind": "interface", @@ -53791,7 +53791,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L307-L320" + "specLocation": "_types/aggregations/bucket.ts#L312-L325" }, { "kind": "interface", @@ -53923,7 +53923,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L322-L343" + "specLocation": "_types/aggregations/bucket.ts#L327-L348" }, { "kind": "interface", @@ -54086,7 +54086,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L491-L500" + "specLocation": "_types/aggregations/bucket.ts#L496-L505" }, { "kind": "interface", @@ -54426,7 +54426,7 @@ "name": "FieldDateMath", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L298-L305", + "specLocation": "_types/aggregations/bucket.ts#L303-L310", "type": { "kind": "union_of", "items": [ @@ -54564,7 +54564,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L360-L380" + "specLocation": "_types/aggregations/bucket.ts#L365-L385" }, { "kind": "interface", @@ -54737,7 +54737,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1167-L1191" + "specLocation": "_types/aggregations/bucket.ts#L1172-L1196" }, { "kind": "interface", @@ -54837,7 +54837,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1153-L1165" + "specLocation": "_types/aggregations/bucket.ts#L1158-L1170" }, { "kind": "enum", @@ -55091,7 +55091,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L382-L405" + "specLocation": "_types/aggregations/bucket.ts#L387-L410" }, { "kind": "interface", @@ -55194,7 +55194,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L407-L432" + "specLocation": "_types/aggregations/bucket.ts#L412-L437" }, { "kind": "interface", @@ -55544,7 +55544,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L434-L460" + "specLocation": "_types/aggregations/bucket.ts#L439-L465" }, { "kind": "interface", @@ -55652,7 +55652,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L462-L487" + "specLocation": "_types/aggregations/bucket.ts#L467-L492" }, { "kind": "interface", @@ -55686,7 +55686,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L489-L489" + "specLocation": "_types/aggregations/bucket.ts#L494-L494" }, { "kind": "interface", @@ -55708,7 +55708,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L748-L753" + "specLocation": "_types/aggregations/bucket.ts#L753-L758" }, { "kind": "interface", @@ -55952,7 +55952,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L502-L548" + "specLocation": "_types/aggregations/bucket.ts#L507-L553" }, { "kind": "interface", @@ -56597,7 +56597,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1122-L1151" + "specLocation": "_types/aggregations/bucket.ts#L1127-L1156" }, { "kind": "interface", @@ -56728,7 +56728,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L550-L559" + "specLocation": "_types/aggregations/bucket.ts#L555-L564" }, { "kind": "interface", @@ -56798,7 +56798,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L561-L574" + "specLocation": "_types/aggregations/bucket.ts#L566-L579" }, { "kind": "interface", @@ -57516,7 +57516,7 @@ "name": "MinimumInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L104-L111" + "specLocation": "_types/aggregations/bucket.ts#L109-L116" }, { "kind": "type_alias", @@ -57615,7 +57615,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L576-L582" + "specLocation": "_types/aggregations/bucket.ts#L581-L587" }, { "kind": "enum", @@ -57969,7 +57969,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L626-L636" + "specLocation": "_types/aggregations/bucket.ts#L631-L641" }, { "kind": "interface", @@ -58114,7 +58114,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L584-L624" + "specLocation": "_types/aggregations/bucket.ts#L589-L629" }, { "kind": "interface", @@ -58203,7 +58203,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L755-L764" + "specLocation": "_types/aggregations/bucket.ts#L760-L769" }, { "kind": "interface", @@ -58250,7 +58250,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L638-L643" + "specLocation": "_types/aggregations/bucket.ts#L643-L648" }, { "kind": "interface", @@ -58360,7 +58360,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L645-L650" + "specLocation": "_types/aggregations/bucket.ts#L650-L655" }, { "kind": "interface", @@ -58369,7 +58369,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L766-L766" + "specLocation": "_types/aggregations/bucket.ts#L771-L771" }, { "kind": "interface", @@ -58782,7 +58782,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L652-L672" + "specLocation": "_types/aggregations/bucket.ts#L657-L677" }, { "kind": "interface", @@ -58958,7 +58958,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L689-L719" + "specLocation": "_types/aggregations/bucket.ts#L694-L724" }, { "kind": "interface", @@ -59103,7 +59103,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L721-L727" + "specLocation": "_types/aggregations/bucket.ts#L726-L732" }, { "kind": "interface", @@ -59151,7 +59151,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L729-L735" + "specLocation": "_types/aggregations/bucket.ts#L734-L740" }, { "kind": "enum", @@ -59173,7 +59173,7 @@ "name": "SamplerAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L345-L358" + "specLocation": "_types/aggregations/bucket.ts#L350-L363" }, { "kind": "interface", @@ -59194,7 +59194,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L768-L770" + "specLocation": "_types/aggregations/bucket.ts#L773-L775" }, { "kind": "interface", @@ -59700,7 +59700,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L772-L836" + "specLocation": "_types/aggregations/bucket.ts#L777-L841" }, { "kind": "interface", @@ -59962,7 +59962,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L838-L910" + "specLocation": "_types/aggregations/bucket.ts#L843-L915" }, { "kind": "interface", @@ -61372,7 +61372,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L912-L977" + "specLocation": "_types/aggregations/bucket.ts#L917-L982" }, { "kind": "enum", @@ -61390,7 +61390,7 @@ "name": "TermsAggregationCollectMode", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L987-L996" + "specLocation": "_types/aggregations/bucket.ts#L992-L1001" }, { "kind": "enum", @@ -61412,7 +61412,7 @@ "name": "TermsAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L998-L1003" + "specLocation": "_types/aggregations/bucket.ts#L1003-L1008" }, { "kind": "interface", @@ -61454,7 +61454,7 @@ "name": "TermsExclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1008-L1009", + "specLocation": "_types/aggregations/bucket.ts#L1013-L1014", "type": { "kind": "union_of", "items": [ @@ -61489,7 +61489,7 @@ "name": "TermsInclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1005-L1006", + "specLocation": "_types/aggregations/bucket.ts#L1010-L1011", "type": { "kind": "union_of", "items": [ @@ -61552,7 +61552,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1011-L1020" + "specLocation": "_types/aggregations/bucket.ts#L1016-L1025" }, { "kind": "interface", @@ -62279,7 +62279,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1022-L1043" + "specLocation": "_types/aggregations/bucket.ts#L1027-L1048" }, { "kind": "interface", @@ -63010,7 +63010,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L170-L173" + "specLocation": "_types/analysis/token_filters.ts#L169-L172" }, { "kind": "interface", @@ -63420,7 +63420,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L56-L60" + "specLocation": "_types/analysis/tokenizers.ts#L55-L59" }, { "kind": "interface", @@ -63571,7 +63571,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L175-L181" + "specLocation": "_types/analysis/token_filters.ts#L174-L180" }, { "kind": "interface", @@ -63667,7 +63667,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L44-L52" + "specLocation": "_types/analysis/token_filters.ts#L43-L51" }, { "kind": "interface", @@ -63716,7 +63716,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L183-L187" + "specLocation": "_types/analysis/token_filters.ts#L182-L186" }, { "kind": "interface", @@ -63978,7 +63978,7 @@ "name": "DelimitedPayloadEncoding", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L62-L66" + "specLocation": "_types/analysis/token_filters.ts#L61-L65" }, { "kind": "interface", @@ -64024,7 +64024,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L68-L72" + "specLocation": "_types/analysis/token_filters.ts#L67-L71" }, { "kind": "interface", @@ -64048,7 +64048,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L54-L56" + "specLocation": "_types/analysis/token_filters.ts#L53-L55" }, { "kind": "interface", @@ -64118,7 +64118,7 @@ "name": "EdgeNGramSide", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L74-L77" + "specLocation": "_types/analysis/token_filters.ts#L73-L76" }, { "kind": "interface", @@ -64195,7 +64195,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L79-L85" + "specLocation": "_types/analysis/token_filters.ts#L78-L84" }, { "kind": "interface", @@ -64266,7 +64266,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L31-L37" + "specLocation": "_types/analysis/tokenizers.ts#L30-L36" }, { "kind": "interface", @@ -64335,7 +64335,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L189-L194" + "specLocation": "_types/analysis/token_filters.ts#L188-L193" }, { "kind": "interface", @@ -64559,7 +64559,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L196-L200" + "specLocation": "_types/analysis/token_filters.ts#L195-L199" }, { "kind": "interface", @@ -65029,7 +65029,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L202-L208" + "specLocation": "_types/analysis/token_filters.ts#L201-L207" }, { "kind": "interface", @@ -65053,7 +65053,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L58-L60" + "specLocation": "_types/analysis/token_filters.ts#L57-L59" }, { "kind": "interface", @@ -65756,7 +65756,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L241-L243" + "specLocation": "_types/analysis/token_filters.ts#L240-L242" }, { "kind": "enum", @@ -65772,7 +65772,7 @@ "name": "KeepTypesMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L215-L218" + "specLocation": "_types/analysis/token_filters.ts#L214-L217" }, { "kind": "interface", @@ -65821,7 +65821,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L220-L224" + "specLocation": "_types/analysis/token_filters.ts#L219-L223" }, { "kind": "interface", @@ -65881,7 +65881,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L226-L231" + "specLocation": "_types/analysis/token_filters.ts#L225-L230" }, { "kind": "interface", @@ -65981,7 +65981,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L233-L239" + "specLocation": "_types/analysis/token_filters.ts#L232-L238" }, { "kind": "interface", @@ -66016,7 +66016,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L62-L65" + "specLocation": "_types/analysis/tokenizers.ts#L61-L64" }, { "kind": "interface", @@ -66621,7 +66621,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L245-L249" + "specLocation": "_types/analysis/token_filters.ts#L244-L248" }, { "kind": "interface", @@ -66645,7 +66645,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L67-L69" + "specLocation": "_types/analysis/tokenizers.ts#L66-L68" }, { "kind": "interface", @@ -66700,7 +66700,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L251-L255" + "specLocation": "_types/analysis/token_filters.ts#L250-L254" }, { "kind": "interface", @@ -66807,7 +66807,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L257-L260" + "specLocation": "_types/analysis/token_filters.ts#L256-L259" }, { "kind": "interface", @@ -66831,7 +66831,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L71-L73" + "specLocation": "_types/analysis/tokenizers.ts#L70-L72" }, { "kind": "interface", @@ -66938,7 +66938,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L262-L266" + "specLocation": "_types/analysis/token_filters.ts#L261-L265" }, { "kind": "interface", @@ -67004,7 +67004,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L268-L273" + "specLocation": "_types/analysis/token_filters.ts#L267-L272" }, { "kind": "interface", @@ -67075,7 +67075,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L39-L45" + "specLocation": "_types/analysis/tokenizers.ts#L38-L44" }, { "kind": "interface", @@ -67159,7 +67159,7 @@ "name": "NoriDecompoundMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L75-L79" + "specLocation": "_types/analysis/tokenizers.ts#L74-L78" }, { "kind": "interface", @@ -67197,7 +67197,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L275-L278" + "specLocation": "_types/analysis/token_filters.ts#L274-L277" }, { "kind": "interface", @@ -67268,7 +67268,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L81-L87" + "specLocation": "_types/analysis/tokenizers.ts#L80-L86" }, { "kind": "type_alias", @@ -67462,7 +67462,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L89-L96" + "specLocation": "_types/analysis/tokenizers.ts#L88-L95" }, { "kind": "interface", @@ -67593,7 +67593,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L280-L284" + "specLocation": "_types/analysis/token_filters.ts#L279-L283" }, { "kind": "interface", @@ -67718,7 +67718,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L286-L292" + "specLocation": "_types/analysis/token_filters.ts#L285-L291" }, { "kind": "interface", @@ -67775,7 +67775,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L98-L103" + "specLocation": "_types/analysis/tokenizers.ts#L97-L102" }, { "kind": "interface", @@ -68071,7 +68071,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L294-L296" + "specLocation": "_types/analysis/token_filters.ts#L293-L295" }, { "kind": "interface", @@ -68160,7 +68160,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L298-L301" + "specLocation": "_types/analysis/token_filters.ts#L297-L300" }, { "kind": "interface", @@ -68184,7 +68184,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L303-L305" + "specLocation": "_types/analysis/token_filters.ts#L302-L304" }, { "kind": "interface", @@ -68208,7 +68208,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L307-L309" + "specLocation": "_types/analysis/token_filters.ts#L306-L308" }, { "kind": "interface", @@ -68484,7 +68484,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L87-L95" + "specLocation": "_types/analysis/token_filters.ts#L86-L94" }, { "kind": "interface", @@ -68675,7 +68675,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L311-L314" + "specLocation": "_types/analysis/token_filters.ts#L310-L313" }, { "kind": "interface", @@ -68858,7 +68858,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L105-L108" + "specLocation": "_types/analysis/tokenizers.ts#L104-L107" }, { "kind": "interface", @@ -68907,7 +68907,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L316-L320" + "specLocation": "_types/analysis/token_filters.ts#L315-L319" }, { "kind": "interface", @@ -68945,7 +68945,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L322-L326" + "specLocation": "_types/analysis/token_filters.ts#L321-L325" }, { "kind": "interface", @@ -69064,7 +69064,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L97-L103" + "specLocation": "_types/analysis/token_filters.ts#L96-L102" }, { "kind": "type_alias", @@ -69165,7 +69165,7 @@ "name": "SynonymFormat", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L105-L108" + "specLocation": "_types/analysis/token_filters.ts#L104-L107" }, { "kind": "interface", @@ -69280,7 +69280,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L110-L120" + "specLocation": "_types/analysis/token_filters.ts#L109-L119" }, { "kind": "interface", @@ -69395,7 +69395,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L122-L132" + "specLocation": "_types/analysis/token_filters.ts#L121-L131" }, { "kind": "interface", @@ -69463,7 +69463,7 @@ "name": "TokenChar", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L47-L54" + "specLocation": "_types/analysis/tokenizers.ts#L46-L53" }, { "kind": "type_alias", @@ -69475,7 +69475,7 @@ "name": "TokenFilter", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L346-L348", + "specLocation": "_types/analysis/token_filters.ts#L345-L347", "type": { "kind": "union_of", "items": [ @@ -69515,7 +69515,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L40-L42" + "specLocation": "_types/analysis/token_filters.ts#L39-L41" }, { "kind": "type_alias", @@ -69523,7 +69523,7 @@ "name": "TokenFilterDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L350-L402", + "specLocation": "_types/analysis/token_filters.ts#L349-L401", "type": { "kind": "union_of", "items": [ @@ -69874,7 +69874,7 @@ "name": "Tokenizer", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L120-L122", + "specLocation": "_types/analysis/tokenizers.ts#L119-L121", "type": { "kind": "union_of", "items": [ @@ -69914,7 +69914,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L27-L29" + "specLocation": "_types/analysis/tokenizers.ts#L26-L28" }, { "kind": "type_alias", @@ -69922,7 +69922,7 @@ "name": "TokenizerDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L124-L142", + "specLocation": "_types/analysis/tokenizers.ts#L123-L141", "type": { "kind": "union_of", "items": [ @@ -70054,7 +70054,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L328-L330" + "specLocation": "_types/analysis/token_filters.ts#L327-L329" }, { "kind": "interface", @@ -70089,7 +70089,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L332-L335" + "specLocation": "_types/analysis/token_filters.ts#L331-L334" }, { "kind": "interface", @@ -70178,7 +70178,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L110-L113" + "specLocation": "_types/analysis/tokenizers.ts#L109-L112" }, { "kind": "interface", @@ -70213,7 +70213,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L337-L340" + "specLocation": "_types/analysis/token_filters.ts#L336-L339" }, { "kind": "interface", @@ -70237,7 +70237,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L342-L344" + "specLocation": "_types/analysis/token_filters.ts#L341-L343" }, { "kind": "interface", @@ -70301,7 +70301,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L115-L118" + "specLocation": "_types/analysis/tokenizers.ts#L114-L117" }, { "kind": "interface", @@ -70505,7 +70505,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L151-L168" + "specLocation": "_types/analysis/token_filters.ts#L150-L167" }, { "kind": "interface", @@ -70687,7 +70687,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L134-L149" + "specLocation": "_types/analysis/token_filters.ts#L133-L148" }, { "kind": "interface", @@ -76558,7 +76558,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L72-L75" + "specLocation": "_types/query_dsl/specialized.ts#L71-L74" }, { "kind": "interface", @@ -76868,7 +76868,7 @@ "name": "DistanceFeatureQuery", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L77-L85", + "specLocation": "_types/query_dsl/specialized.ts#L76-L84", "type": { "kind": "union_of", "items": [ @@ -76963,7 +76963,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L40-L60" + "specLocation": "_types/query_dsl/specialized.ts#L39-L59" }, { "kind": "interface", @@ -77746,7 +77746,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L67-L70" + "specLocation": "_types/query_dsl/specialized.ts#L66-L69" }, { "kind": "interface", @@ -78980,7 +78980,7 @@ "name": "Like", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L195-L200", + "specLocation": "_types/query_dsl/specialized.ts#L194-L199", "type": { "kind": "union_of", "items": [ @@ -79112,7 +79112,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L171-L193" + "specLocation": "_types/query_dsl/specialized.ts#L170-L192" }, { "kind": "interface", @@ -79915,7 +79915,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L87-L169" + "specLocation": "_types/query_dsl/specialized.ts#L86-L168" }, { "kind": "interface", @@ -80514,7 +80514,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L202-L239" + "specLocation": "_types/query_dsl/specialized.ts#L201-L238" }, { "kind": "interface", @@ -80548,7 +80548,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L262-L271" + "specLocation": "_types/query_dsl/specialized.ts#L261-L270" }, { "kind": "interface", @@ -80607,7 +80607,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L241-L260", + "specLocation": "_types/query_dsl/specialized.ts#L240-L259", "variants": { "kind": "container" } @@ -82372,7 +82372,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L273-L273" + "specLocation": "_types/query_dsl/specialized.ts#L272-L272" }, { "kind": "interface", @@ -82387,7 +82387,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L275-L275" + "specLocation": "_types/query_dsl/specialized.ts#L274-L274" }, { "kind": "interface", @@ -82415,7 +82415,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L277-L282" + "specLocation": "_types/query_dsl/specialized.ts#L276-L281" }, { "kind": "interface", @@ -82443,7 +82443,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L284-L289" + "specLocation": "_types/query_dsl/specialized.ts#L283-L288" }, { "kind": "interface", @@ -82483,7 +82483,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L291-L300" + "specLocation": "_types/query_dsl/specialized.ts#L290-L299" }, { "kind": "interface", @@ -82559,7 +82559,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L302-L325" + "specLocation": "_types/query_dsl/specialized.ts#L301-L324" }, { "kind": "interface", @@ -82698,7 +82698,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L381-L385" + "specLocation": "_types/query_dsl/specialized.ts#L380-L384" }, { "kind": "interface", @@ -82726,7 +82726,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L327-L333" + "specLocation": "_types/query_dsl/specialized.ts#L326-L332" }, { "kind": "interface", @@ -82800,7 +82800,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L335-L349" + "specLocation": "_types/query_dsl/specialized.ts#L334-L348" }, { "kind": "interface", @@ -82886,7 +82886,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L366-L379" + "specLocation": "_types/query_dsl/specialized.ts#L365-L378" }, { "kind": "interface", @@ -82945,7 +82945,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L351-L364" + "specLocation": "_types/query_dsl/specialized.ts#L350-L363" }, { "kind": "enum", @@ -84374,7 +84374,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L62-L65" + "specLocation": "_types/query_dsl/specialized.ts#L61-L64" }, { "kind": "interface", @@ -84470,7 +84470,7 @@ } } ], - "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L27-L32" + "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L25-L30" }, { "kind": "interface", @@ -98734,7 +98734,7 @@ } } ], - "specLocation": "cat/tasks/CatTasksRequest.ts#L23-L48" + "specLocation": "cat/tasks/CatTasksRequest.ts#L22-L47" }, { "kind": "response", @@ -101104,7 +101104,7 @@ } } ], - "specLocation": "ccr/follow_info/types.ts#L22-L28" + "specLocation": "ccr/follow_info/types.ts#L24-L30" }, { "kind": "interface", @@ -101224,7 +101224,7 @@ } } ], - "specLocation": "ccr/follow_info/types.ts#L38-L49" + "specLocation": "ccr/follow_info/types.ts#L37-L48" }, { "kind": "enum", @@ -101240,7 +101240,7 @@ "name": "FollowerIndexStatus", "namespace": "ccr.follow_info" }, - "specLocation": "ccr/follow_info/types.ts#L30-L33" + "specLocation": "ccr/follow_info/types.ts#L32-L35" }, { "kind": "request", @@ -102308,7 +102308,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L33-L39" + "specLocation": "ccr/stats/types.ts.ts#L32-L38" }, { "kind": "interface", @@ -102360,7 +102360,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L27-L31" + "specLocation": "ccr/stats/types.ts.ts#L26-L30" }, { "kind": "interface", @@ -102384,7 +102384,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L41-L43" + "specLocation": "ccr/stats/types.ts.ts#L40-L42" }, { "kind": "request", @@ -102528,7 +102528,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L30-L33" + "specLocation": "cluster/_types/ComponentTemplate.ts#L27-L30" }, { "kind": "interface", @@ -102573,7 +102573,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L35-L40" + "specLocation": "cluster/_types/ComponentTemplate.ts#L32-L37" }, { "kind": "interface", @@ -102682,7 +102682,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L42-L54" + "specLocation": "cluster/_types/ComponentTemplate.ts#L39-L51" }, { "kind": "interface", @@ -105909,7 +105909,7 @@ }, "path": [], "query": [], - "specLocation": "cluster/remote_info/ClusterRemoteInfoRequest.ts#L23-L31" + "specLocation": "cluster/remote_info/ClusterRemoteInfoRequest.ts#L22-L30" }, { "kind": "response", @@ -114591,7 +114591,7 @@ } } ], - "specLocation": "eql/_types/EqlSearchResponseBase.ts#L25-L50" + "specLocation": "eql/_types/EqlSearchResponseBase.ts#L24-L49" }, { "kind": "interface", @@ -116286,7 +116286,7 @@ } } ], - "specLocation": "fleet/msearch/MultiSearchRequest.ts#L32-L115" + "specLocation": "fleet/msearch/MultiSearchRequest.ts#L31-L114" }, { "kind": "response", @@ -122974,7 +122974,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L31-L70" + "specLocation": "indices/_types/IndexTemplate.ts#L28-L67" }, { "kind": "interface", @@ -123010,7 +123010,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L72-L83" + "specLocation": "indices/_types/IndexTemplate.ts#L69-L80" }, { "kind": "interface", @@ -123087,7 +123087,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L85-L107" + "specLocation": "indices/_types/IndexTemplate.ts#L82-L104" }, { "kind": "interface", @@ -131439,7 +131439,7 @@ } } ], - "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L42-L150" + "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L41-L149" }, { "kind": "response", @@ -134462,7 +134462,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L26-L28" + "specLocation": "indices/shard_stores/types.ts#L25-L27" }, { "kind": "request", @@ -134673,7 +134673,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L30-L37" + "specLocation": "indices/shard_stores/types.ts#L29-L36" }, { "kind": "enum", @@ -134692,7 +134692,7 @@ "name": "ShardStoreAllocation", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L48-L52" + "specLocation": "indices/shard_stores/types.ts#L47-L51" }, { "kind": "interface", @@ -134724,7 +134724,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L54-L57" + "specLocation": "indices/shard_stores/types.ts#L53-L56" }, { "kind": "interface", @@ -134814,7 +134814,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L39-L46" + "specLocation": "indices/shard_stores/types.ts#L38-L45" }, { "kind": "enum", @@ -134840,7 +134840,7 @@ "name": "ShardStoreStatus", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L63-L72" + "specLocation": "indices/shard_stores/types.ts#L62-L71" }, { "kind": "interface", @@ -134864,7 +134864,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L59-L61" + "specLocation": "indices/shard_stores/types.ts#L58-L60" }, { "kind": "request", @@ -138885,10 +138885,18 @@ "name": "value", "required": true, "type": { - "kind": "array_of", - "value": { - "kind": "user_defined_value" - } + "kind": "union_of", + "items": [ + { + "kind": "user_defined_value" + }, + { + "kind": "array_of", + "value": { + "kind": "user_defined_value" + } + } + ] } }, { @@ -139079,7 +139087,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L464-L480" + "specLocation": "ingest/_types/Processors.ts#L481-L497" }, { "kind": "interface", @@ -139156,7 +139164,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L482-L505" + "specLocation": "ingest/_types/Processors.ts#L499-L522" }, { "kind": "interface", @@ -139222,7 +139230,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L517-L537" + "specLocation": "ingest/_types/Processors.ts#L534-L554" }, { "kind": "enum", @@ -139253,7 +139261,7 @@ "name": "ConvertType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L507-L515" + "specLocation": "ingest/_types/Processors.ts#L524-L532" }, { "kind": "interface", @@ -139351,7 +139359,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L539-L572" + "specLocation": "ingest/_types/Processors.ts#L556-L589" }, { "kind": "interface", @@ -139491,7 +139499,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L574-L612" + "specLocation": "ingest/_types/Processors.ts#L591-L629" }, { "kind": "interface", @@ -139573,7 +139581,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L614-L641" + "specLocation": "ingest/_types/Processors.ts#L631-L658" }, { "kind": "interface", @@ -139639,7 +139647,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L643-L662" + "specLocation": "ingest/_types/Processors.ts#L660-L679" }, { "kind": "interface", @@ -139666,6 +139674,19 @@ } } }, + { + "description": "Controls the behavior when there is already an existing nested object that conflicts with the expanded field.\nWhen `false`, the processor will merge conflicts by combining the old and the new values into an array.\nWhen `true`, the value from the expanded field will overwrite the existing value.", + "name": "override", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } + }, { "description": "The field that contains the field to expand.\nOnly required if the field to expand is part another object field, because the `field` option can only understand leaf fields.", "name": "path", @@ -139679,7 +139700,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L664-L675" + "specLocation": "ingest/_types/Processors.ts#L681-L699" }, { "kind": "interface", @@ -139694,7 +139715,7 @@ "namespace": "ingest._types" }, "properties": [], - "specLocation": "ingest/_types/Processors.ts#L677-L677" + "specLocation": "ingest/_types/Processors.ts#L701-L701" }, { "kind": "interface", @@ -139798,7 +139819,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L679-L718" + "specLocation": "ingest/_types/Processors.ts#L703-L742" }, { "kind": "interface", @@ -139826,7 +139847,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L720-L726" + "specLocation": "ingest/_types/Processors.ts#L744-L750" }, { "kind": "interface", @@ -139879,7 +139900,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L728-L742" + "specLocation": "ingest/_types/Processors.ts#L752-L766" }, { "kind": "interface", @@ -140134,9 +140155,21 @@ "namespace": "_types" } } + }, + { + "description": "If `true` (and if `ingest.geoip.downloader.eager.download` is `false`), the missing database is downloaded when the pipeline is created.\nElse, the download is triggered by when the pipeline is used as the `default_pipeline` or `final_pipeline` in an index.", + "name": "download_database_on_pipeline_creation", + "required": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ], - "specLocation": "ingest/_types/Processors.ts#L411-L440" + "specLocation": "ingest/_types/Processors.ts#L411-L445" }, { "kind": "interface", @@ -140228,7 +140261,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L744-L769" + "specLocation": "ingest/_types/Processors.ts#L768-L793" }, { "kind": "interface", @@ -140306,7 +140339,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L771-L795" + "specLocation": "ingest/_types/Processors.ts#L795-L819" }, { "kind": "interface", @@ -140360,7 +140393,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L797-L813" + "specLocation": "ingest/_types/Processors.ts#L821-L837" }, { "kind": "interface", @@ -140394,7 +140427,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L836-L848", + "specLocation": "ingest/_types/Processors.ts#L860-L872", "variants": { "kind": "container" } @@ -140471,7 +140504,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L863-L889" + "specLocation": "ingest/_types/Processors.ts#L887-L913" }, { "kind": "interface", @@ -140507,7 +140540,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L850-L861" + "specLocation": "ingest/_types/Processors.ts#L874-L885" }, { "kind": "interface", @@ -140579,7 +140612,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L815-L834" + "specLocation": "ingest/_types/Processors.ts#L839-L858" }, { "kind": "interface", @@ -140632,7 +140665,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L891-L906" + "specLocation": "ingest/_types/Processors.ts#L915-L930" }, { "kind": "interface", @@ -140711,7 +140744,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L908-L937" + "specLocation": "ingest/_types/Processors.ts#L932-L961" }, { "kind": "enum", @@ -140729,7 +140762,7 @@ "name": "JsonProcessorConflictStrategy", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L939-L944" + "specLocation": "ingest/_types/Processors.ts#L963-L968" }, { "kind": "interface", @@ -140886,7 +140919,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L946-L998" + "specLocation": "ingest/_types/Processors.ts#L970-L1022" }, { "kind": "interface", @@ -140940,7 +140973,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1000-L1016" + "specLocation": "ingest/_types/Processors.ts#L1024-L1040" }, { "kind": "interface", @@ -141024,6 +141057,19 @@ } } }, + { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "name": "deprecated", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } + }, { "description": "Arbitrary metadata about the ingest pipeline. This map is not automatically generated by Elasticsearch.", "name": "_meta", @@ -141037,7 +141083,7 @@ } } ], - "specLocation": "ingest/_types/Pipeline.ts#L23-L45" + "specLocation": "ingest/_types/Pipeline.ts#L23-L51" }, { "kind": "interface", @@ -141086,7 +141132,7 @@ } } ], - "specLocation": "ingest/_types/Pipeline.ts#L61-L75" + "specLocation": "ingest/_types/Pipeline.ts#L67-L81" }, { "kind": "interface", @@ -141127,7 +141173,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1018-L1029" + "specLocation": "ingest/_types/Processors.ts#L1042-L1053" }, { "kind": "interface", @@ -141797,7 +141843,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1031-L1045" + "specLocation": "ingest/_types/Processors.ts#L1055-L1069" }, { "kind": "interface", @@ -141850,7 +141896,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1047-L1063" + "specLocation": "ingest/_types/Processors.ts#L1071-L1087" }, { "kind": "interface", @@ -141932,7 +141978,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1065-L1093" + "specLocation": "ingest/_types/Processors.ts#L1089-L1117" }, { "kind": "interface", @@ -142004,7 +142050,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1095-L1115" + "specLocation": "ingest/_types/Processors.ts#L1119-L1139" }, { "kind": "interface", @@ -142090,7 +142136,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1117-L1151" + "specLocation": "ingest/_types/Processors.ts#L1141-L1175" }, { "kind": "interface", @@ -142133,7 +142179,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1153-L1162" + "specLocation": "ingest/_types/Processors.ts#L1177-L1186" }, { "kind": "enum", @@ -142149,7 +142195,7 @@ "name": "ShapeType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L1164-L1167" + "specLocation": "ingest/_types/Processors.ts#L1188-L1191" }, { "kind": "interface", @@ -142202,7 +142248,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1169-L1185" + "specLocation": "ingest/_types/Processors.ts#L1193-L1209" }, { "kind": "interface", @@ -142281,7 +142327,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1187-L1212" + "specLocation": "ingest/_types/Processors.ts#L1211-L1236" }, { "kind": "interface", @@ -142335,7 +142381,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1214-L1230" + "specLocation": "ingest/_types/Processors.ts#L1238-L1254" }, { "kind": "interface", @@ -142389,7 +142435,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1232-L1248" + "specLocation": "ingest/_types/Processors.ts#L1256-L1272" }, { "kind": "interface", @@ -142469,7 +142515,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1268-L1294" + "specLocation": "ingest/_types/Processors.ts#L1292-L1318" }, { "kind": "interface", @@ -142523,7 +142569,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1250-L1266" + "specLocation": "ingest/_types/Processors.ts#L1274-L1290" }, { "kind": "interface", @@ -142601,9 +142647,56 @@ "namespace": "_types" } } + }, + { + "description": "Controls what properties are added to `target_field`.", + "name": "properties", + "required": false, + "serverDefault": [ + "name", + "major", + "minor", + "patch", + "build", + "os", + "os_name", + "os_major", + "os_minor", + "device" + ], + "type": { + "kind": "array_of", + "value": { + "kind": "instance_of", + "type": { + "name": "string", + "namespace": "_builtins" + } + } + } + }, + { + "availability": { + "serverless": {}, + "stack": { + "since": "8.9.0", + "stability": "beta" + } + }, + "description": "Extracts device type from the user agent string on a best-effort basis.", + "name": "extract_device_type", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ], - "specLocation": "ingest/_types/Processors.ts#L442-L462" + "specLocation": "ingest/_types/Processors.ts#L447-L479" }, { "kind": "enum", @@ -143502,6 +143595,19 @@ "namespace": "_types" } } + }, + { + "description": "Marks this ingest pipeline as deprecated.\nWhen a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning.", + "name": "deprecated", + "required": false, + "serverDefault": false, + "type": { + "kind": "instance_of", + "type": { + "name": "boolean", + "namespace": "_builtins" + } + } } ] }, @@ -143570,7 +143676,7 @@ } } ], - "specLocation": "ingest/put_pipeline/PutPipelineRequest.ts#L25-L77" + "specLocation": "ingest/put_pipeline/PutPipelineRequest.ts#L25-L83" }, { "kind": "response", @@ -143967,7 +144073,7 @@ } } ], - "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L26-L58" + "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L25-L57" }, { "kind": "response", @@ -147118,7 +147224,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L80-L128" + "specLocation": "ml/_types/Bucket.ts#L79-L127" }, { "kind": "interface", @@ -147289,7 +147395,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L31-L78" + "specLocation": "ml/_types/Bucket.ts#L30-L77" }, { "kind": "interface", @@ -149047,7 +149153,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L134-L213" + "specLocation": "ml/_types/DataframeAnalytics.ts#L133-L212" }, { "kind": "interface", @@ -149088,7 +149194,7 @@ } ], "shortcutProperty": "includes", - "specLocation": "ml/_types/DataframeAnalytics.ts#L238-L244" + "specLocation": "ml/_types/DataframeAnalytics.ts#L237-L243" }, { "kind": "interface", @@ -149128,7 +149234,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L227-L236" + "specLocation": "ml/_types/DataframeAnalytics.ts#L226-L235" }, { "kind": "interface", @@ -149180,7 +149286,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L84-L101", + "specLocation": "ml/_types/DataframeAnalytics.ts#L83-L100", "variants": { "kind": "container" } @@ -149253,7 +149359,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L246-L258", + "specLocation": "ml/_types/DataframeAnalytics.ts#L245-L257", "variants": { "kind": "container" } @@ -149312,7 +149418,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L260-L267" + "specLocation": "ml/_types/DataframeAnalytics.ts#L259-L266" }, { "kind": "interface", @@ -149337,7 +149443,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L269-L272" + "specLocation": "ml/_types/DataframeAnalytics.ts#L268-L271" }, { "kind": "interface", @@ -149421,7 +149527,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L274-L286" + "specLocation": "ml/_types/DataframeAnalytics.ts#L273-L285" }, { "kind": "interface", @@ -149455,7 +149561,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L288-L293" + "specLocation": "ml/_types/DataframeAnalytics.ts#L287-L292" }, { "kind": "interface", @@ -149520,7 +149626,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L295-L304" + "specLocation": "ml/_types/DataframeAnalytics.ts#L294-L303" }, { "kind": "interface", @@ -149606,7 +149712,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L103-L132" + "specLocation": "ml/_types/DataframeAnalytics.ts#L102-L131" }, { "kind": "interface", @@ -149647,7 +149753,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L215-L225" + "specLocation": "ml/_types/DataframeAnalytics.ts#L214-L224" }, { "kind": "interface", @@ -149759,7 +149865,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L324-L344" + "specLocation": "ml/_types/DataframeAnalytics.ts#L323-L343" }, { "kind": "interface", @@ -149842,7 +149948,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L77-L82" + "specLocation": "ml/_types/DataframeAnalytics.ts#L76-L81" }, { "kind": "interface", @@ -149927,7 +150033,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L55-L68" + "specLocation": "ml/_types/DataframeAnalytics.ts#L54-L67" }, { "kind": "interface", @@ -149961,7 +150067,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L70-L75" + "specLocation": "ml/_types/DataframeAnalytics.ts#L69-L74" }, { "kind": "interface", @@ -150021,7 +150127,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L39-L53" + "specLocation": "ml/_types/DataframeAnalytics.ts#L38-L52" }, { "kind": "interface", @@ -150067,7 +150173,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L373-L381", + "specLocation": "ml/_types/DataframeAnalytics.ts#L372-L380", "variants": { "kind": "container" } @@ -150116,7 +150222,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L364-L371" + "specLocation": "ml/_types/DataframeAnalytics.ts#L363-L370" }, { "kind": "interface", @@ -150195,7 +150301,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L383-L402" + "specLocation": "ml/_types/DataframeAnalytics.ts#L382-L401" }, { "kind": "interface", @@ -150262,7 +150368,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L353-L362" + "specLocation": "ml/_types/DataframeAnalytics.ts#L352-L361" }, { "kind": "interface", @@ -150317,7 +150423,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L404-L417" + "specLocation": "ml/_types/DataframeAnalytics.ts#L403-L416" }, { "kind": "interface", @@ -150351,7 +150457,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L346-L351" + "specLocation": "ml/_types/DataframeAnalytics.ts#L345-L350" }, { "kind": "interface", @@ -150503,7 +150609,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L306-L322" + "specLocation": "ml/_types/DataframeAnalytics.ts#L305-L321" }, { "kind": "interface", @@ -151085,7 +151191,7 @@ "name": "DeploymentAllocationState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L289-L302" + "specLocation": "ml/_types/TrainedModel.ts#L288-L301" }, { "kind": "enum", @@ -151107,7 +151213,7 @@ "name": "DeploymentAssignmentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L304-L309" + "specLocation": "ml/_types/TrainedModel.ts#L303-L308" }, { "kind": "enum", @@ -151129,7 +151235,7 @@ "name": "DeploymentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L274-L287" + "specLocation": "ml/_types/TrainedModel.ts#L273-L286" }, { "kind": "interface", @@ -151894,7 +152000,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L217-L231" + "specLocation": "ml/_types/TrainedModel.ts#L216-L230" }, { "kind": "interface", @@ -152072,7 +152178,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L419-L525" + "specLocation": "ml/_types/DataframeAnalytics.ts#L418-L524" }, { "kind": "enum", @@ -152754,7 +152860,7 @@ } } ], - "specLocation": "ml/_types/Influencer.ts#L31-L83" + "specLocation": "ml/_types/Influencer.ts#L24-L76" }, { "kind": "interface", @@ -154655,7 +154761,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L527-L561" + "specLocation": "ml/_types/DataframeAnalytics.ts#L526-L560" }, { "kind": "interface", @@ -154770,7 +154876,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L130-L145" + "specLocation": "ml/_types/Bucket.ts#L129-L144" }, { "kind": "interface", @@ -154802,7 +154908,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L146-L149" + "specLocation": "ml/_types/Bucket.ts#L145-L148" }, { "kind": "interface", @@ -155178,7 +155284,7 @@ "name": "RoutingState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L351-L372" + "specLocation": "ml/_types/TrainedModel.ts#L350-L371" }, { "kind": "enum", @@ -155663,7 +155769,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L563-L568" + "specLocation": "ml/_types/DataframeAnalytics.ts#L562-L567" }, { "kind": "interface", @@ -155839,7 +155945,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L233-L240" + "specLocation": "ml/_types/TrainedModel.ts#L232-L239" }, { "kind": "interface", @@ -155876,7 +155982,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L242-L247" + "specLocation": "ml/_types/TrainedModel.ts#L241-L246" }, { "kind": "interface", @@ -155922,7 +156028,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L249-L256" + "specLocation": "ml/_types/TrainedModel.ts#L248-L255" }, { "kind": "interface", @@ -156001,7 +156107,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L403-L418" + "specLocation": "ml/_types/TrainedModel.ts#L402-L417" }, { "kind": "interface", @@ -156059,7 +156165,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L374-L392" + "specLocation": "ml/_types/TrainedModel.ts#L373-L391" }, { "kind": "interface", @@ -156170,7 +156276,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L316-L349" + "specLocation": "ml/_types/TrainedModel.ts#L315-L348" }, { "kind": "interface", @@ -156418,7 +156524,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L165-L200" + "specLocation": "ml/_types/TrainedModel.ts#L164-L199" }, { "kind": "interface", @@ -156443,7 +156549,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L202-L205" + "specLocation": "ml/_types/TrainedModel.ts#L201-L204" }, { "kind": "interface", @@ -156520,7 +156626,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L207-L215" + "specLocation": "ml/_types/TrainedModel.ts#L206-L214" }, { "kind": "interface", @@ -156566,7 +156672,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L394-L401" + "specLocation": "ml/_types/TrainedModel.ts#L393-L400" }, { "kind": "interface", @@ -156741,7 +156847,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L133-L163" + "specLocation": "ml/_types/TrainedModel.ts#L132-L162" }, { "kind": "interface", @@ -156942,7 +157048,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L62-L102" + "specLocation": "ml/_types/TrainedModel.ts#L61-L101" }, { "kind": "interface", @@ -157166,7 +157272,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L104-L124" + "specLocation": "ml/_types/TrainedModel.ts#L103-L123" }, { "kind": "interface", @@ -157187,7 +157293,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L420-L422" + "specLocation": "ml/_types/TrainedModel.ts#L419-L421" }, { "kind": "interface", @@ -157208,7 +157314,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L424-L426" + "specLocation": "ml/_types/TrainedModel.ts#L423-L425" }, { "kind": "interface", @@ -157242,7 +157348,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L428-L437" + "specLocation": "ml/_types/TrainedModel.ts#L427-L436" }, { "kind": "interface", @@ -157276,7 +157382,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L126-L131" + "specLocation": "ml/_types/TrainedModel.ts#L125-L130" }, { "kind": "interface", @@ -157367,7 +157473,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L42-L60" + "specLocation": "ml/_types/TrainedModel.ts#L41-L59" }, { "kind": "enum", @@ -157389,7 +157495,7 @@ "name": "TrainedModelType", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L258-L272" + "specLocation": "ml/_types/TrainedModel.ts#L257-L271" }, { "kind": "enum", @@ -157405,7 +157511,7 @@ "name": "TrainingPriority", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L311-L314" + "specLocation": "ml/_types/TrainedModel.ts#L310-L313" }, { "kind": "interface", @@ -157491,7 +157597,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L570-L575" + "specLocation": "ml/_types/DataframeAnalytics.ts#L569-L574" }, { "kind": "interface", @@ -157700,7 +157806,7 @@ } ], "query": [], - "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L25-L43" + "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L23-L41" }, { "kind": "response", @@ -161162,7 +161268,7 @@ "name": "Response", "namespace": "ml.get_data_frame_analytics_stats" }, - "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L24-L30" + "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L23-L29" }, { "kind": "request", @@ -166767,7 +166873,7 @@ } } ], - "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L29-L125" + "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L127" }, { "kind": "response", @@ -180544,7 +180650,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L25-L27" + "specLocation": "rollup/get_rollup_caps/types.ts#L24-L26" }, { "kind": "interface", @@ -180612,7 +180718,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L29-L34" + "specLocation": "rollup/get_rollup_caps/types.ts#L28-L33" }, { "kind": "interface", @@ -180655,7 +180761,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L36-L40" + "specLocation": "rollup/get_rollup_caps/types.ts#L35-L39" }, { "kind": "interface", @@ -182031,7 +182137,7 @@ } } ], - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L27-L32" }, { "kind": "request", @@ -182085,7 +182191,7 @@ "name": "Response", "namespace": "search_application.put_behavioral_analytics" }, - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L24-L26" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L23-L25" }, { "kind": "request", @@ -182195,7 +182301,7 @@ "name": "Response", "namespace": "search_application.search" }, - "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L23-L25" + "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L22-L24" }, { "kind": "enum", @@ -183026,7 +183132,7 @@ } } ], - "specLocation": "security/_types/ApiKey.ts#L27-L89" + "specLocation": "security/_types/ApiKey.ts#L26-L88" }, { "kind": "interface", @@ -183507,7 +183613,7 @@ } } ], - "specLocation": "security/_types/RoleMappingRule.ts#L36-L44", + "specLocation": "security/_types/RoleMappingRule.ts#L35-L43", "variants": { "kind": "container", "nonExhaustive": true @@ -183999,7 +184105,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L28-L61" + "specLocation": "security/_types/RoleDescriptor.ts#L31-L64" }, { "kind": "interface", @@ -184166,7 +184272,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L63-L95" + "specLocation": "security/_types/RoleDescriptor.ts#L66-L98" }, { "kind": "interface", @@ -184297,7 +184403,7 @@ } } ], - "specLocation": "security/_types/RoleMappingRule.ts#L23-L34", + "specLocation": "security/_types/RoleMappingRule.ts#L22-L33", "variants": { "kind": "container" } @@ -184765,7 +184871,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L42-L48" + "specLocation": "security/_types/UserProfile.ts#L41-L47" }, { "kind": "interface", @@ -184797,7 +184903,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L28-L31" + "specLocation": "security/_types/UserProfile.ts#L27-L30" }, { "kind": "type_alias", @@ -184805,7 +184911,7 @@ "name": "UserProfileId", "namespace": "security._types" }, - "specLocation": "security/_types/UserProfile.ts#L26-L26", + "specLocation": "security/_types/UserProfile.ts#L25-L25", "type": { "kind": "instance_of", "type": { @@ -184915,7 +185021,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L33-L40" + "specLocation": "security/_types/UserProfile.ts#L32-L39" }, { "kind": "interface", @@ -184953,7 +185059,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L50-L53" + "specLocation": "security/_types/UserProfile.ts#L49-L52" }, { "kind": "request", @@ -185376,7 +185482,7 @@ "name": "Response", "namespace": "security.bulk_delete_role" }, - "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L25-L40" + "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L22-L37" }, { "kind": "request", @@ -186361,7 +186467,7 @@ } } ], - "specLocation": "security/create_service_token/CreateServiceTokenRequest.ts#L24-L39" + "specLocation": "security/create_service_token/CreateServiceTokenRequest.ts#L23-L38" }, { "kind": "response", @@ -188794,7 +188900,7 @@ "name": "Response", "namespace": "security.get_user_privileges" }, - "specLocation": "security/get_user_privileges/SecurityGetUserPrivilegesResponse.ts#L27-L35" + "specLocation": "security/get_user_privileges/SecurityGetUserPrivilegesResponse.ts#L26-L34" }, { "kind": "interface", @@ -190794,7 +190900,7 @@ "name": "ApiKeyAggregate", "namespace": "security.query_api_keys" }, - "specLocation": "security/query_api_keys/types.ts#L123-L140", + "specLocation": "security/query_api_keys/types.ts#L122-L139", "type": { "kind": "union_of", "items": [ @@ -191064,7 +191170,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L64-L121", + "specLocation": "security/query_api_keys/types.ts#L63-L120", "variants": { "kind": "container", "nonExhaustive": true @@ -191143,7 +191249,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L208-L228" + "specLocation": "security/query_api_keys/types.ts#L207-L227" }, { "kind": "interface", @@ -191362,7 +191468,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L142-L206", + "specLocation": "security/query_api_keys/types.ts#L141-L205", "variants": { "kind": "container", "nonExhaustive": true @@ -199054,7 +199160,7 @@ } ], "query": [], - "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L24-L36" + "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L35" }, { "kind": "response", @@ -199672,7 +199778,7 @@ "name": "Response", "namespace": "sql.translate" }, - "specLocation": "sql/translate/TranslateSqlResponse.ts#L28-L38" + "specLocation": "sql/translate/TranslateSqlResponse.ts#L27-L37" }, { "kind": "interface", @@ -205009,7 +205115,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L115-L118" + "specLocation": "watcher/_types/Action.ts#L109-L112" }, { "kind": "enum", @@ -205028,7 +205134,7 @@ "name": "AcknowledgementOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L109-L113" + "specLocation": "watcher/_types/Action.ts#L103-L107" }, { "kind": "interface", @@ -205207,7 +205313,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L41-L60" + "specLocation": "watcher/_types/Action.ts#L35-L54" }, { "kind": "enum", @@ -205237,7 +205343,7 @@ "name": "ActionExecutionMode", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L73-L94" + "specLocation": "watcher/_types/Action.ts#L67-L88" }, { "kind": "interface", @@ -205291,7 +205397,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L131-L136" + "specLocation": "watcher/_types/Action.ts#L125-L130" }, { "kind": "enum", @@ -205313,7 +205419,7 @@ "name": "ActionStatusOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L102-L107" + "specLocation": "watcher/_types/Action.ts#L96-L101" }, { "kind": "enum", @@ -205341,7 +205447,7 @@ "name": "ActionType", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L64-L71" + "specLocation": "watcher/_types/Action.ts#L58-L65" }, { "kind": "type_alias", @@ -205349,7 +205455,7 @@ "name": "Actions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L62-L62", + "specLocation": "watcher/_types/Action.ts#L56-L56", "type": { "kind": "dictionary_of", "key": { @@ -206542,7 +206648,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L120-L124" + "specLocation": "watcher/_types/Action.ts#L114-L118" }, { "kind": "enum", @@ -208459,7 +208565,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L96-L100" + "specLocation": "watcher/_types/Action.ts#L90-L94" }, { "kind": "interface", @@ -208899,7 +209005,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L126-L129" + "specLocation": "watcher/_types/Action.ts#L120-L123" }, { "kind": "interface", @@ -211586,7 +211692,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L330-L332" + "specLocation": "xpack/usage/types.ts#L328-L330" }, { "kind": "interface", @@ -211695,7 +211801,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L61-L71" + "specLocation": "xpack/usage/types.ts#L59-L69" }, { "kind": "interface", @@ -211722,7 +211828,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L48-L50" + "specLocation": "xpack/usage/types.ts#L46-L48" }, { "kind": "interface", @@ -211752,7 +211858,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L73-L75" + "specLocation": "xpack/usage/types.ts#L71-L73" }, { "kind": "interface", @@ -211784,7 +211890,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L30-L33" + "specLocation": "xpack/usage/types.ts#L28-L31" }, { "kind": "interface", @@ -211822,7 +211928,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L334-L337" + "specLocation": "xpack/usage/types.ts#L332-L335" }, { "kind": "interface", @@ -211854,7 +211960,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L35-L38" + "specLocation": "xpack/usage/types.ts#L33-L36" }, { "kind": "interface", @@ -211892,7 +211998,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L81-L84" + "specLocation": "xpack/usage/types.ts#L79-L82" }, { "kind": "interface", @@ -212012,7 +212118,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L86-L97" + "specLocation": "xpack/usage/types.ts#L84-L95" }, { "kind": "interface", @@ -212089,7 +212195,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L339-L349" + "specLocation": "xpack/usage/types.ts#L337-L347" }, { "kind": "interface", @@ -212110,7 +212216,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L77-L79" + "specLocation": "xpack/usage/types.ts#L75-L77" }, { "kind": "interface", @@ -212159,7 +212265,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L351-L354" + "specLocation": "xpack/usage/types.ts#L349-L352" }, { "kind": "interface", @@ -212246,7 +212352,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L99-L107" + "specLocation": "xpack/usage/types.ts#L97-L105" }, { "kind": "interface", @@ -212311,7 +212417,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L109-L115" + "specLocation": "xpack/usage/types.ts#L107-L113" }, { "kind": "interface", @@ -212376,7 +212482,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L117-L123" + "specLocation": "xpack/usage/types.ts#L115-L121" }, { "kind": "interface", @@ -212408,7 +212514,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L125-L128" + "specLocation": "xpack/usage/types.ts#L123-L126" }, { "kind": "interface", @@ -212484,7 +212590,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L130-L137" + "specLocation": "xpack/usage/types.ts#L128-L135" }, { "kind": "interface", @@ -212505,7 +212611,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L40-L42" + "specLocation": "xpack/usage/types.ts#L38-L40" }, { "kind": "interface", @@ -212532,7 +212638,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L356-L358" + "specLocation": "xpack/usage/types.ts#L354-L356" }, { "kind": "interface", @@ -212559,7 +212665,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L360-L362" + "specLocation": "xpack/usage/types.ts#L358-L360" }, { "kind": "interface", @@ -212586,7 +212692,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L153-L155" + "specLocation": "xpack/usage/types.ts#L151-L153" }, { "kind": "interface", @@ -212621,7 +212727,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L162-L165" + "specLocation": "xpack/usage/types.ts#L160-L163" }, { "kind": "interface", @@ -212653,7 +212759,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L157-L160" + "specLocation": "xpack/usage/types.ts#L155-L158" }, { "kind": "interface", @@ -212674,7 +212780,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L44-L46" + "specLocation": "xpack/usage/types.ts#L42-L44" }, { "kind": "interface", @@ -212706,7 +212812,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L167-L170" + "specLocation": "xpack/usage/types.ts#L165-L168" }, { "kind": "interface", @@ -212782,7 +212888,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L364-L370" + "specLocation": "xpack/usage/types.ts#L362-L368" }, { "kind": "interface", @@ -212876,7 +212982,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L372-L379" + "specLocation": "xpack/usage/types.ts#L370-L377" }, { "kind": "interface", @@ -212897,7 +213003,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L255-L257" + "specLocation": "xpack/usage/types.ts#L253-L255" }, { "kind": "interface", @@ -212951,7 +213057,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L177-L182" + "specLocation": "xpack/usage/types.ts#L175-L180" }, { "kind": "interface", @@ -212994,7 +213100,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L184-L188" + "specLocation": "xpack/usage/types.ts#L182-L186" }, { "kind": "interface", @@ -213015,7 +213121,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L194-L196" + "specLocation": "xpack/usage/types.ts#L192-L194" }, { "kind": "interface", @@ -213036,7 +213142,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L190-L192" + "specLocation": "xpack/usage/types.ts#L188-L190" }, { "kind": "interface", @@ -213096,7 +213202,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L198-L206" + "specLocation": "xpack/usage/types.ts#L196-L204" }, { "kind": "interface", @@ -213150,7 +213256,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L227-L232" + "specLocation": "xpack/usage/types.ts#L225-L230" }, { "kind": "interface", @@ -213171,7 +213277,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L234-L236" + "specLocation": "xpack/usage/types.ts#L232-L234" }, { "kind": "interface", @@ -213225,7 +213331,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L208-L213" + "specLocation": "xpack/usage/types.ts#L206-L211" }, { "kind": "interface", @@ -213268,7 +213374,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L238-L242" + "specLocation": "xpack/usage/types.ts#L236-L240" }, { "kind": "interface", @@ -213339,7 +213445,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L215-L225" + "specLocation": "xpack/usage/types.ts#L213-L223" }, { "kind": "interface", @@ -213437,7 +213543,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L244-L253" + "specLocation": "xpack/usage/types.ts#L242-L251" }, { "kind": "interface", @@ -213469,7 +213575,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L172-L175" + "specLocation": "xpack/usage/types.ts#L170-L173" }, { "kind": "interface", @@ -213518,7 +213624,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L381-L384" + "specLocation": "xpack/usage/types.ts#L379-L382" }, { "kind": "interface", @@ -213572,7 +213678,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L259-L264" + "specLocation": "xpack/usage/types.ts#L257-L262" }, { "kind": "interface", @@ -213700,7 +213806,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L417-L426" + "specLocation": "xpack/usage/types.ts#L415-L424" }, { "kind": "interface", @@ -213721,7 +213827,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L266-L268" + "specLocation": "xpack/usage/types.ts#L264-L266" }, { "kind": "request", @@ -214128,7 +214234,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L270-L273" + "specLocation": "xpack/usage/types.ts#L268-L271" }, { "kind": "interface", @@ -214158,7 +214264,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L275-L277" + "specLocation": "xpack/usage/types.ts#L273-L275" }, { "kind": "interface", @@ -214325,7 +214431,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L279-L294" + "specLocation": "xpack/usage/types.ts#L277-L292" }, { "kind": "interface", @@ -214374,7 +214480,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L428-L432" + "specLocation": "xpack/usage/types.ts#L426-L430" }, { "kind": "interface", @@ -214544,7 +214650,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L434-L447" + "specLocation": "xpack/usage/types.ts#L432-L445" }, { "kind": "interface", @@ -214587,7 +214693,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L296-L300" + "specLocation": "xpack/usage/types.ts#L294-L298" }, { "kind": "interface", @@ -214608,7 +214714,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L308-L310" + "specLocation": "xpack/usage/types.ts#L306-L308" }, { "kind": "interface", @@ -214651,7 +214757,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L312-L316" + "specLocation": "xpack/usage/types.ts#L310-L314" }, { "kind": "interface", @@ -214694,7 +214800,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L318-L322" + "specLocation": "xpack/usage/types.ts#L316-L320" }, { "kind": "interface", @@ -214737,7 +214843,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L302-L306" + "specLocation": "xpack/usage/types.ts#L300-L304" }, { "kind": "interface", @@ -214775,7 +214881,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L449-L452" + "specLocation": "xpack/usage/types.ts#L447-L450" }, { "kind": "interface", @@ -214835,7 +214941,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L386-L389" + "specLocation": "xpack/usage/types.ts#L384-L387" }, { "kind": "interface", @@ -214867,7 +214973,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L391-L394" + "specLocation": "xpack/usage/types.ts#L389-L392" }, { "kind": "interface", @@ -214916,7 +215022,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L454-L458" + "specLocation": "xpack/usage/types.ts#L452-L456" }, { "kind": "interface", @@ -214965,7 +215071,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L460-L464" + "specLocation": "xpack/usage/types.ts#L458-L462" }, { "kind": "interface", @@ -215006,7 +215112,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L412-L415" + "specLocation": "xpack/usage/types.ts#L410-L413" }, { "kind": "interface", @@ -215038,7 +215144,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L396-L398" + "specLocation": "xpack/usage/types.ts#L394-L396" }, { "kind": "interface", @@ -215125,7 +215231,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L400-L405" + "specLocation": "xpack/usage/types.ts#L398-L403" }, { "kind": "interface", @@ -215157,7 +215263,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L407-L410" + "specLocation": "xpack/usage/types.ts#L405-L408" }, { "kind": "interface", @@ -215195,7 +215301,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L466-L469" + "specLocation": "xpack/usage/types.ts#L464-L467" }, { "kind": "interface", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 3ed53d7b75..c61c0b89db 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -12612,7 +12612,7 @@ export type InferencePutResponse = InferenceInferenceEndpointInfo export interface IngestAppendProcessor extends IngestProcessorBase { field: Field - value: any[] + value: any | any[] allow_duplicates?: boolean } @@ -12692,6 +12692,7 @@ export interface IngestDissectProcessor extends IngestProcessorBase { export interface IngestDotExpanderProcessor extends IngestProcessorBase { field: Field + override?: boolean path?: string } @@ -12741,6 +12742,7 @@ export interface IngestGeoIpProcessor extends IngestProcessorBase { ignore_missing?: boolean properties?: string[] target_field?: Field + download_database_on_pipeline_creation?: boolean } export interface IngestGrokProcessor extends IngestProcessorBase { @@ -12835,6 +12837,7 @@ export interface IngestPipeline { on_failure?: IngestProcessorContainer[] processors?: IngestProcessorContainer[] version?: VersionNumber + deprecated?: boolean _meta?: Metadata } @@ -12985,6 +12988,8 @@ export interface IngestUserAgentProcessor extends IngestProcessorBase { options?: IngestUserAgentProperty[] regex_file?: string target_field?: Field + properties?: string[] + extract_device_type?: boolean } export type IngestUserAgentProperty = 'NAME' | 'MAJOR' | 'MINOR' | 'PATCH' | 'OS' | 'OS_NAME' | 'OS_MAJOR' | 'OS_MINOR' | 'DEVICE' | 'BUILD' @@ -13085,6 +13090,7 @@ export interface IngestPutPipelineRequest extends RequestBase { on_failure?: IngestProcessorContainer[] processors?: IngestProcessorContainer[] version?: VersionNumber + deprecated?: boolean } } diff --git a/specification/ingest/_types/Pipeline.ts b/specification/ingest/_types/Pipeline.ts index 8863f1794c..8eb1b252dd 100644 --- a/specification/ingest/_types/Pipeline.ts +++ b/specification/ingest/_types/Pipeline.ts @@ -38,6 +38,12 @@ export class Pipeline { * Version number used by external systems to track ingest pipelines. */ version?: VersionNumber + /** + * Marks this ingest pipeline as deprecated. + * When a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning. + * @server_default false + */ + deprecated?: boolean /** * Arbitrary metadata about the ingest pipeline. This map is not automatically generated by Elasticsearch. */ diff --git a/specification/ingest/_types/Processors.ts b/specification/ingest/_types/Processors.ts index 9f9891e95b..24366640cd 100644 --- a/specification/ingest/_types/Processors.ts +++ b/specification/ingest/_types/Processors.ts @@ -303,7 +303,7 @@ export class AppendProcessor extends ProcessorBase { /** * The value to be appended. Supports template snippets. */ - value: UserDefinedValue[] + value: UserDefinedValue | UserDefinedValue[] /** * If `false`, the processor does not append values already present in the field. * @server_default true @@ -437,6 +437,11 @@ export class GeoIpProcessor extends ProcessorBase { * @server_default geoip */ target_field?: Field + /** + * If `true` (and if `ingest.geoip.downloader.eager.download` is `false`), the missing database is downloaded when the pipeline is created. + * Else, the download is triggered by when the pipeline is used as the `default_pipeline` or `final_pipeline` in an index. + */ + download_database_on_pipeline_creation?: boolean } export class UserAgentProcessor extends ProcessorBase { @@ -459,6 +464,18 @@ export class UserAgentProcessor extends ProcessorBase { * @server_default user_agent */ target_field?: Field + /** + * Controls what properties are added to `target_field`. + * @server_default ['name', 'major', 'minor', 'patch', 'build', 'os', 'os_name', 'os_major', 'os_minor', 'device'] + */ + properties?: string[] + /** + * Extracts device type from the user agent string on a best-effort basis. + * @server_default false + * @availability stack since=8.9.0 stability=beta + * @availability serverless + */ + extract_device_type?: boolean } export class BytesProcessor extends ProcessorBase { @@ -667,6 +684,13 @@ export class DotExpanderProcessor extends ProcessorBase { * If set to `*`, all top-level fields will be expanded. */ field: Field + /** + * Controls the behavior when there is already an existing nested object that conflicts with the expanded field. + * When `false`, the processor will merge conflicts by combining the old and the new values into an array. + * When `true`, the value from the expanded field will overwrite the existing value. + * @server_default false + */ + override?: boolean /** * The field that contains the field to expand. * Only required if the field to expand is part another object field, because the `field` option can only understand leaf fields. diff --git a/specification/ingest/put_pipeline/PutPipelineRequest.ts b/specification/ingest/put_pipeline/PutPipelineRequest.ts index 4f966a9e82..ba6bec0e97 100644 --- a/specification/ingest/put_pipeline/PutPipelineRequest.ts +++ b/specification/ingest/put_pipeline/PutPipelineRequest.ts @@ -73,5 +73,11 @@ export interface Request extends RequestBase { * Version number used by external systems to track ingest pipelines. This parameter is intended for external systems only. Elasticsearch does not use or validate pipeline version numbers. */ version?: VersionNumber + /** + * Marks this ingest pipeline as deprecated. + * When a deprecated ingest pipeline is referenced as the default or final pipeline when creating or updating a non-deprecated index template, Elasticsearch will emit a deprecation warning. + * @server_default false + */ + deprecated?: boolean } } From 9520d28c50f34d55167471cd620a3dbb102e054e Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 4 Sep 2024 17:27:47 +0400 Subject: [PATCH 2/2] Remove options, add properties --- output/openapi/elasticsearch-openapi.json | 23 +- .../elasticsearch-serverless-openapi.json | 23 +- output/schema/schema-serverless.json | 653 +++++++------- output/schema/schema.json | 851 +++++++++--------- output/typescript/types.ts | 5 +- specification/ingest/_types/Processors.ts | 24 +- 6 files changed, 746 insertions(+), 833 deletions(-) diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 509e0c07a6..eab6f7201d 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -87803,12 +87803,6 @@ "description": "If `true` and `field` does not exist, the processor quietly exits without modifying the document.", "type": "boolean" }, - "options": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ingest._types:UserAgentProperty" - } - }, "regex_file": { "description": "The name of the file in the `config/ingest-user-agent` directory containing the regular expressions for parsing the user agent string. Both the directory and the file have to be created before starting Elasticsearch. If not specified, ingest-user-agent will use the `regexes.yaml` from uap-core it ships with.", "type": "string" @@ -87820,7 +87814,7 @@ "description": "Controls what properties are added to `target_field`.", "type": "array", "items": { - "type": "string" + "$ref": "#/components/schemas/ingest._types:UserAgentProperty" } }, "extract_device_type": { @@ -87839,16 +87833,11 @@ "ingest._types:UserAgentProperty": { "type": "string", "enum": [ - "NAME", - "MAJOR", - "MINOR", - "PATCH", - "OS", - "OS_NAME", - "OS_MAJOR", - "OS_MINOR", - "DEVICE", - "BUILD" + "name", + "os", + "device", + "original", + "version" ] }, "ingest.simulate:Document": { diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index db5fa07fd0..8ce24fcde6 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -56603,12 +56603,6 @@ "description": "If `true` and `field` does not exist, the processor quietly exits without modifying the document.", "type": "boolean" }, - "options": { - "type": "array", - "items": { - "$ref": "#/components/schemas/ingest._types:UserAgentProperty" - } - }, "regex_file": { "description": "The name of the file in the `config/ingest-user-agent` directory containing the regular expressions for parsing the user agent string. Both the directory and the file have to be created before starting Elasticsearch. If not specified, ingest-user-agent will use the `regexes.yaml` from uap-core it ships with.", "type": "string" @@ -56620,7 +56614,7 @@ "description": "Controls what properties are added to `target_field`.", "type": "array", "items": { - "type": "string" + "$ref": "#/components/schemas/ingest._types:UserAgentProperty" } }, "extract_device_type": { @@ -56639,16 +56633,11 @@ "ingest._types:UserAgentProperty": { "type": "string", "enum": [ - "NAME", - "MAJOR", - "MINOR", - "PATCH", - "OS", - "OS_NAME", - "OS_MAJOR", - "OS_MINOR", - "DEVICE", - "BUILD" + "name", + "os", + "device", + "original", + "version" ] }, "ingest.simulate:Document": { diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index e80965fb14..731880fcfe 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -23092,7 +23092,7 @@ } } ], - "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L41-L149" + "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L42-L150" }, { "body": { @@ -25600,7 +25600,7 @@ } } ], - "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L25-L57" + "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L26-L58" }, { "body": { @@ -27790,7 +27790,7 @@ "name": "Response", "namespace": "ml.get_data_frame_analytics_stats" }, - "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L23-L29" + "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L24-L30" }, { "attachedBehaviors": [ @@ -31162,7 +31162,7 @@ } } ], - "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L127" + "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L29-L125" }, { "body": { @@ -37762,7 +37762,7 @@ "name": "Response", "namespace": "search_application.put_behavioral_analytics" }, - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L23-L25" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L24-L26" }, { "attachedBehaviors": [ @@ -37872,7 +37872,7 @@ "name": "Response", "namespace": "search_application.search" }, - "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L22-L24" + "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L23-L25" }, { "attachedBehaviors": [ @@ -40320,7 +40320,7 @@ } ], "query": [], - "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L35" + "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L24-L36" }, { "body": { @@ -40938,7 +40938,7 @@ "name": "Response", "namespace": "sql.translate" }, - "specLocation": "sql/translate/TranslateSqlResponse.ts#L27-L37" + "specLocation": "sql/translate/TranslateSqlResponse.ts#L28-L38" }, { "attachedBehaviors": [ @@ -47055,7 +47055,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L60-L70" + "specLocation": "_types/aggregations/bucket.ts#L55-L65" }, { "description": "Base type for bucket aggregations. These aggregations also accept sub-aggregations.", @@ -47071,7 +47071,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L53-L58" + "specLocation": "_types/aggregations/bucket.ts#L48-L53" }, { "kind": "interface", @@ -48782,7 +48782,7 @@ "name": "DistanceFeatureQuery", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L76-L84", + "specLocation": "_types/query_dsl/specialized.ts#L77-L85", "type": { "items": [ { @@ -48838,7 +48838,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L61-L64" + "specLocation": "_types/query_dsl/specialized.ts#L62-L65" }, { "generics": [ @@ -48900,7 +48900,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L39-L59" + "specLocation": "_types/query_dsl/specialized.ts#L40-L60" }, { "inherits": { @@ -48931,7 +48931,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L66-L69" + "specLocation": "_types/query_dsl/specialized.ts#L67-L70" }, { "inherits": { @@ -48962,7 +48962,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L71-L74" + "specLocation": "_types/query_dsl/specialized.ts#L72-L75" }, { "inherits": { @@ -51453,7 +51453,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L152-L155" + "specLocation": "_global/search/_types/highlighting.ts#L153-L156" }, { "kind": "interface", @@ -51737,7 +51737,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L47-L150" + "specLocation": "_global/search/_types/highlighting.ts#L48-L151" }, { "isOpen": true, @@ -51761,7 +51761,7 @@ "name": "HighlighterType", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L175-L190" + "specLocation": "_global/search/_types/highlighting.ts#L176-L191" }, { "kind": "enum", @@ -51783,7 +51783,7 @@ "name": "BoundaryScanner", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L26-L45" + "specLocation": "_global/search/_types/highlighting.ts#L27-L46" }, { "kind": "enum", @@ -51799,7 +51799,7 @@ "name": "HighlighterFragmenter", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L162-L165" + "specLocation": "_global/search/_types/highlighting.ts#L163-L166" }, { "kind": "enum", @@ -51812,7 +51812,7 @@ "name": "HighlighterOrder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L167-L169" + "specLocation": "_global/search/_types/highlighting.ts#L168-L170" }, { "kind": "enum", @@ -51825,7 +51825,7 @@ "name": "HighlighterTagsSchema", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L171-L173" + "specLocation": "_global/search/_types/highlighting.ts#L172-L174" }, { "kind": "enum", @@ -51841,7 +51841,7 @@ "name": "HighlighterEncoder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L157-L160" + "specLocation": "_global/search/_types/highlighting.ts#L158-L161" }, { "inherits": { @@ -51879,7 +51879,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L192-L195" + "specLocation": "_global/search/_types/highlighting.ts#L193-L196" }, { "kind": "type_alias", @@ -51949,7 +51949,7 @@ "name": "Sort", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L104-L104", + "specLocation": "_types/sort.ts#L105-L105", "type": { "items": [ { @@ -51983,7 +51983,7 @@ "name": "SortCombinations", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L98-L102", + "specLocation": "_types/sort.ts#L99-L103", "type": { "items": [ { @@ -52089,7 +52089,7 @@ } } ], - "specLocation": "_types/sort.ts#L86-L96", + "specLocation": "_types/sort.ts#L87-L97", "variants": { "kind": "container" } @@ -52180,7 +52180,7 @@ } ], "shortcutProperty": "order", - "specLocation": "_types/sort.ts#L43-L52" + "specLocation": "_types/sort.ts#L44-L53" }, { "kind": "type_alias", @@ -52246,7 +52246,7 @@ "name": "SortMode", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L108-L117" + "specLocation": "_types/sort.ts#L109-L118" }, { "kind": "interface", @@ -52300,7 +52300,7 @@ } } ], - "specLocation": "_types/sort.ts#L29-L34" + "specLocation": "_types/sort.ts#L30-L35" }, { "kind": "enum", @@ -52318,7 +52318,7 @@ "name": "SortOrder", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L119-L128" + "specLocation": "_types/sort.ts#L120-L129" }, { "kind": "enum", @@ -52488,7 +52488,7 @@ "name": "FieldSortNumericType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L36-L41" + "specLocation": "_types/sort.ts#L37-L42" }, { "kind": "interface", @@ -52509,7 +52509,7 @@ } } ], - "specLocation": "_types/sort.ts#L54-L56" + "specLocation": "_types/sort.ts#L55-L57" }, { "attachedBehaviors": [ @@ -52631,7 +52631,7 @@ } } ], - "specLocation": "_types/sort.ts#L58-L70" + "specLocation": "_types/sort.ts#L59-L71" }, { "kind": "enum", @@ -52742,7 +52742,7 @@ } } ], - "specLocation": "_types/sort.ts#L72-L78" + "specLocation": "_types/sort.ts#L73-L79" }, { "kind": "enum", @@ -52761,7 +52761,7 @@ "name": "ScriptSortType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L80-L84" + "specLocation": "_types/sort.ts#L81-L85" }, { "codegenNames": [ @@ -54686,7 +54686,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L86-L168" + "specLocation": "_types/query_dsl/specialized.ts#L87-L169" }, { "codegenNames": [ @@ -54701,7 +54701,7 @@ "name": "Like", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L194-L199", + "specLocation": "_types/query_dsl/specialized.ts#L195-L200", "type": { "items": [ { @@ -54833,7 +54833,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L170-L192" + "specLocation": "_types/query_dsl/specialized.ts#L171-L193" }, { "kind": "enum", @@ -55416,7 +55416,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L201-L238" + "specLocation": "_types/query_dsl/specialized.ts#L202-L239" }, { "inherits": { @@ -55475,7 +55475,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L240-L259", + "specLocation": "_types/query_dsl/specialized.ts#L241-L260", "variants": { "kind": "container" } @@ -55512,7 +55512,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L261-L270" + "specLocation": "_types/query_dsl/specialized.ts#L262-L271" }, { "inherits": { @@ -56370,7 +56370,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L301-L324" + "specLocation": "_types/query_dsl/specialized.ts#L302-L325" }, { "inherits": { @@ -56398,7 +56398,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L283-L288" + "specLocation": "_types/query_dsl/specialized.ts#L284-L289" }, { "kind": "interface", @@ -56407,7 +56407,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L272-L272" + "specLocation": "_types/query_dsl/specialized.ts#L273-L273" }, { "inherits": { @@ -56435,7 +56435,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L276-L281" + "specLocation": "_types/query_dsl/specialized.ts#L277-L282" }, { "inherits": { @@ -56450,7 +56450,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L274-L274" + "specLocation": "_types/query_dsl/specialized.ts#L275-L275" }, { "inherits": { @@ -56490,7 +56490,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L290-L299" + "specLocation": "_types/query_dsl/specialized.ts#L291-L300" }, { "inherits": { @@ -56629,7 +56629,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L380-L384" + "specLocation": "_types/query_dsl/specialized.ts#L381-L385" }, { "inherits": { @@ -56657,7 +56657,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L326-L332" + "specLocation": "_types/query_dsl/specialized.ts#L327-L333" }, { "inherits": { @@ -56709,7 +56709,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L334-L348" + "specLocation": "_types/query_dsl/specialized.ts#L335-L349" }, { "inherits": { @@ -56808,7 +56808,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L350-L363" + "specLocation": "_types/query_dsl/specialized.ts#L351-L364" }, { "kind": "interface", @@ -56854,7 +56854,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L365-L378" + "specLocation": "_types/query_dsl/specialized.ts#L366-L379" }, { "inherits": { @@ -58232,7 +58232,7 @@ } } ], - "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L25-L30" + "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L27-L32" }, { "inherits": { @@ -58490,7 +58490,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L72-L107" + "specLocation": "_types/aggregations/bucket.ts#L67-L102" }, { "kind": "enum", @@ -58518,7 +58518,7 @@ "name": "MinimumInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L109-L116" + "specLocation": "_types/aggregations/bucket.ts#L104-L111" }, { "description": "A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a\nnumber of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string\nrepresentation.", @@ -59390,7 +59390,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1050-L1114" + "specLocation": "_types/aggregations/bucket.ts#L1045-L1109" }, { "codegenNames": [ @@ -59402,7 +59402,7 @@ "name": "CategorizeTextAnalyzer", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1116-L1119", + "specLocation": "_types/aggregations/bucket.ts#L1111-L1114", "type": { "items": [ { @@ -59470,7 +59470,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1121-L1125" + "specLocation": "_types/aggregations/bucket.ts#L1116-L1120" }, { "inherits": { @@ -59498,7 +59498,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L118-L123" + "specLocation": "_types/aggregations/bucket.ts#L113-L118" }, { "inherits": { @@ -59565,7 +59565,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L127-L143" + "specLocation": "_types/aggregations/bucket.ts#L122-L138" }, { "kind": "type_alias", @@ -59573,7 +59573,7 @@ "name": "CompositeAggregateKey", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L125-L125", + "specLocation": "_types/aggregations/bucket.ts#L120-L120", "type": { "key": { "kind": "instance_of", @@ -59649,7 +59649,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L145-L162" + "specLocation": "_types/aggregations/bucket.ts#L140-L157" }, { "inherits": { @@ -59664,7 +59664,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L175-L175" + "specLocation": "_types/aggregations/bucket.ts#L170-L170" }, { "kind": "interface", @@ -59742,7 +59742,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L164-L173" + "specLocation": "_types/aggregations/bucket.ts#L159-L168" }, { "kind": "enum", @@ -59828,7 +59828,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L177-L179" + "specLocation": "_types/aggregations/bucket.ts#L172-L174" }, { "inherits": { @@ -59901,7 +59901,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L181-L189" + "specLocation": "_types/aggregations/bucket.ts#L176-L184" }, { "description": "A date histogram interval. Similar to `Duration` with additional units: `w` (week), `M` (month), `q` (quarter) and\n`y` (year)", @@ -59986,7 +59986,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L191-L194" + "specLocation": "_types/aggregations/bucket.ts#L186-L189" }, { "inherits": { @@ -60238,7 +60238,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L196-L254" + "specLocation": "_types/aggregations/bucket.ts#L191-L249" }, { "kind": "enum", @@ -60296,7 +60296,7 @@ "name": "CalendarInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L256-L273" + "specLocation": "_types/aggregations/bucket.ts#L251-L268" }, { "generics": [ @@ -60336,7 +60336,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L496-L505" + "specLocation": "_types/aggregations/bucket.ts#L491-L500" }, { "kind": "type_alias", @@ -60344,7 +60344,7 @@ "name": "AggregateOrder", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L988-L990", + "specLocation": "_types/aggregations/bucket.ts#L983-L985", "type": { "items": [ { @@ -60479,7 +60479,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L275-L301" + "specLocation": "_types/aggregations/bucket.ts#L270-L296" }, { "kind": "interface", @@ -60525,7 +60525,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L312-L325" + "specLocation": "_types/aggregations/bucket.ts#L307-L320" }, { "codegenNames": [ @@ -60538,7 +60538,7 @@ "name": "FieldDateMath", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L303-L310", + "specLocation": "_types/aggregations/bucket.ts#L298-L305", "type": { "items": [ { @@ -60665,7 +60665,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L327-L348" + "specLocation": "_types/aggregations/bucket.ts#L322-L343" }, { "kind": "enum", @@ -60687,7 +60687,7 @@ "name": "SamplerAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L350-L363" + "specLocation": "_types/aggregations/bucket.ts#L345-L358" }, { "inherits": { @@ -60819,7 +60819,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1172-L1196" + "specLocation": "_types/aggregations/bucket.ts#L1167-L1191" }, { "kind": "interface", @@ -60864,7 +60864,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1158-L1170" + "specLocation": "_types/aggregations/bucket.ts#L1153-L1165" }, { "codegenNames": [ @@ -60876,7 +60876,7 @@ "name": "TermsExclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1013-L1014", + "specLocation": "_types/aggregations/bucket.ts#L1008-L1009", "type": { "items": [ { @@ -60911,7 +60911,7 @@ "name": "TermsInclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1010-L1011", + "specLocation": "_types/aggregations/bucket.ts#L1005-L1006", "type": { "items": [ { @@ -60974,7 +60974,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1016-L1025" + "specLocation": "_types/aggregations/bucket.ts#L1011-L1020" }, { "inherits": { @@ -61049,7 +61049,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L365-L385" + "specLocation": "_types/aggregations/bucket.ts#L360-L380" }, { "codegenNames": [ @@ -61249,7 +61249,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L387-L410" + "specLocation": "_types/aggregations/bucket.ts#L382-L405" }, { "kind": "interface", @@ -61295,7 +61295,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L679-L692" + "specLocation": "_types/aggregations/bucket.ts#L674-L687" }, { "inherits": { @@ -61373,7 +61373,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L412-L437" + "specLocation": "_types/aggregations/bucket.ts#L407-L432" }, { "codegenNames": [ @@ -61599,7 +61599,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L439-L465" + "specLocation": "_types/aggregations/bucket.ts#L434-L460" }, { "kind": "type_alias", @@ -61692,7 +61692,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L467-L492" + "specLocation": "_types/aggregations/bucket.ts#L462-L487" }, { "inherits": { @@ -61707,7 +61707,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L494-L494" + "specLocation": "_types/aggregations/bucket.ts#L489-L489" }, { "inherits": { @@ -61872,7 +61872,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L507-L553" + "specLocation": "_types/aggregations/bucket.ts#L502-L548" }, { "inherits": { @@ -61915,7 +61915,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L555-L564" + "specLocation": "_types/aggregations/bucket.ts#L550-L559" }, { "kind": "interface", @@ -61985,7 +61985,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L566-L579" + "specLocation": "_types/aggregations/bucket.ts#L561-L574" }, { "inherits": { @@ -62076,7 +62076,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1127-L1156" + "specLocation": "_types/aggregations/bucket.ts#L1122-L1151" }, { "inherits": { @@ -62471,7 +62471,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L581-L587" + "specLocation": "_types/aggregations/bucket.ts#L576-L582" }, { "kind": "type_alias", @@ -63129,7 +63129,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L589-L629" + "specLocation": "_types/aggregations/bucket.ts#L584-L624" }, { "kind": "enum", @@ -63147,7 +63147,7 @@ "name": "TermsAggregationCollectMode", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L992-L1001" + "specLocation": "_types/aggregations/bucket.ts#L987-L996" }, { "kind": "interface", @@ -63181,7 +63181,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L631-L641" + "specLocation": "_types/aggregations/bucket.ts#L626-L636" }, { "inherits": { @@ -63209,7 +63209,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L643-L648" + "specLocation": "_types/aggregations/bucket.ts#L638-L643" }, { "inherits": { @@ -63300,7 +63300,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L650-L655" + "specLocation": "_types/aggregations/bucket.ts#L645-L650" }, { "inherits": { @@ -63612,7 +63612,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L657-L677" + "specLocation": "_types/aggregations/bucket.ts#L652-L672" }, { "inherits": { @@ -63713,7 +63713,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L694-L724" + "specLocation": "_types/aggregations/bucket.ts#L689-L719" }, { "inherits": { @@ -63800,7 +63800,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L726-L732" + "specLocation": "_types/aggregations/bucket.ts#L721-L727" }, { "inherits": { @@ -63829,7 +63829,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L734-L740" + "specLocation": "_types/aggregations/bucket.ts#L729-L735" }, { "inherits": { @@ -64137,7 +64137,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L777-L841" + "specLocation": "_types/aggregations/bucket.ts#L772-L836" }, { "kind": "interface", @@ -64171,7 +64171,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L742-L751" + "specLocation": "_types/aggregations/bucket.ts#L737-L746" }, { "kind": "enum", @@ -64193,7 +64193,7 @@ "name": "TermsAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1003-L1008" + "specLocation": "_types/aggregations/bucket.ts#L998-L1003" }, { "kind": "interface", @@ -64215,7 +64215,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L753-L758" + "specLocation": "_types/aggregations/bucket.ts#L748-L753" }, { "kind": "interface", @@ -64249,7 +64249,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L760-L769" + "specLocation": "_types/aggregations/bucket.ts#L755-L764" }, { "kind": "interface", @@ -64258,7 +64258,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L771-L771" + "specLocation": "_types/aggregations/bucket.ts#L766-L766" }, { "kind": "interface", @@ -64279,7 +64279,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L773-L775" + "specLocation": "_types/aggregations/bucket.ts#L768-L770" }, { "inherits": { @@ -64500,7 +64500,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L843-L915" + "specLocation": "_types/aggregations/bucket.ts#L838-L910" }, { "inherits": { @@ -64807,7 +64807,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L917-L982" + "specLocation": "_types/aggregations/bucket.ts#L912-L977" }, { "inherits": { @@ -65431,7 +65431,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1027-L1048" + "specLocation": "_types/aggregations/bucket.ts#L1022-L1043" }, { "kind": "interface", @@ -65755,7 +65755,7 @@ "name": "SortResults", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L106-L106", + "specLocation": "_types/sort.ts#L107-L107", "type": { "kind": "array_of", "value": { @@ -77131,7 +77131,7 @@ "name": "NoriDecompoundMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L74-L78" + "specLocation": "_types/analysis/tokenizers.ts#L75-L79" }, { "kind": "interface", @@ -79860,7 +79860,7 @@ "name": "DelimitedPayloadEncoding", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L61-L65" + "specLocation": "_types/analysis/token_filters.ts#L62-L66" }, { "kind": "enum", @@ -79876,7 +79876,7 @@ "name": "EdgeNGramSide", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L73-L76" + "specLocation": "_types/analysis/token_filters.ts#L74-L77" }, { "kind": "enum", @@ -79981,7 +79981,7 @@ "name": "KeepTypesMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L214-L217" + "specLocation": "_types/analysis/token_filters.ts#L215-L218" }, { "docId": "analysis-normalizers", @@ -80222,7 +80222,7 @@ "name": "SynonymFormat", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L104-L107" + "specLocation": "_types/analysis/token_filters.ts#L105-L108" }, { "kind": "enum", @@ -80250,7 +80250,7 @@ "name": "TokenChar", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L46-L53" + "specLocation": "_types/analysis/tokenizers.ts#L47-L54" }, { "codegenNames": [ @@ -80262,7 +80262,7 @@ "name": "TokenFilter", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L345-L347", + "specLocation": "_types/analysis/token_filters.ts#L346-L348", "type": { "items": [ { @@ -80289,7 +80289,7 @@ "name": "TokenFilterDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L349-L401", + "specLocation": "_types/analysis/token_filters.ts#L350-L402", "type": { "items": [ { @@ -80672,7 +80672,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L169-L172" + "specLocation": "_types/analysis/token_filters.ts#L170-L173" }, { "kind": "interface", @@ -80693,7 +80693,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L39-L41" + "specLocation": "_types/analysis/token_filters.ts#L40-L42" }, { "inherits": { @@ -80764,7 +80764,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L174-L180" + "specLocation": "_types/analysis/token_filters.ts#L175-L181" }, { "inherits": { @@ -80813,7 +80813,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L182-L186" + "specLocation": "_types/analysis/token_filters.ts#L183-L187" }, { "inherits": { @@ -80859,7 +80859,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L67-L71" + "specLocation": "_types/analysis/token_filters.ts#L68-L72" }, { "inherits": { @@ -80936,7 +80936,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L78-L84" + "specLocation": "_types/analysis/token_filters.ts#L79-L85" }, { "inherits": { @@ -81005,7 +81005,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L188-L193" + "specLocation": "_types/analysis/token_filters.ts#L189-L194" }, { "inherits": { @@ -81051,7 +81051,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L195-L199" + "specLocation": "_types/analysis/token_filters.ts#L196-L200" }, { "inherits": { @@ -81119,7 +81119,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L201-L207" + "specLocation": "_types/analysis/token_filters.ts#L202-L208" }, { "inherits": { @@ -81143,7 +81143,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L57-L59" + "specLocation": "_types/analysis/token_filters.ts#L58-L60" }, { "inherits": { @@ -81239,7 +81239,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L43-L51" + "specLocation": "_types/analysis/token_filters.ts#L44-L52" }, { "inherits": { @@ -81288,7 +81288,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L219-L223" + "specLocation": "_types/analysis/token_filters.ts#L220-L224" }, { "inherits": { @@ -81348,7 +81348,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L225-L230" + "specLocation": "_types/analysis/token_filters.ts#L226-L231" }, { "inherits": { @@ -81419,7 +81419,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L232-L238" + "specLocation": "_types/analysis/token_filters.ts#L233-L239" }, { "inherits": { @@ -81443,7 +81443,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L240-L242" + "specLocation": "_types/analysis/token_filters.ts#L241-L243" }, { "inherits": { @@ -81489,7 +81489,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L244-L248" + "specLocation": "_types/analysis/token_filters.ts#L245-L249" }, { "inherits": { @@ -81544,7 +81544,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L250-L254" + "specLocation": "_types/analysis/token_filters.ts#L251-L255" }, { "inherits": { @@ -81579,7 +81579,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L256-L259" + "specLocation": "_types/analysis/token_filters.ts#L257-L260" }, { "inherits": { @@ -81637,7 +81637,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L261-L265" + "specLocation": "_types/analysis/token_filters.ts#L262-L266" }, { "inherits": { @@ -81703,7 +81703,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L267-L272" + "specLocation": "_types/analysis/token_filters.ts#L268-L273" }, { "inherits": { @@ -81741,7 +81741,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L274-L277" + "specLocation": "_types/analysis/token_filters.ts#L275-L278" }, { "inherits": { @@ -81799,7 +81799,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L279-L283" + "specLocation": "_types/analysis/token_filters.ts#L280-L284" }, { "inherits": { @@ -81867,7 +81867,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L285-L291" + "specLocation": "_types/analysis/token_filters.ts#L286-L292" }, { "inherits": { @@ -81891,7 +81891,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L293-L295" + "specLocation": "_types/analysis/token_filters.ts#L294-L296" }, { "inherits": { @@ -81926,7 +81926,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L297-L300" + "specLocation": "_types/analysis/token_filters.ts#L298-L301" }, { "inherits": { @@ -81950,7 +81950,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L302-L304" + "specLocation": "_types/analysis/token_filters.ts#L303-L305" }, { "inherits": { @@ -81974,7 +81974,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L306-L308" + "specLocation": "_types/analysis/token_filters.ts#L307-L309" }, { "inherits": { @@ -82088,7 +82088,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L86-L94" + "specLocation": "_types/analysis/token_filters.ts#L87-L95" }, { "inherits": { @@ -82123,7 +82123,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L310-L313" + "specLocation": "_types/analysis/token_filters.ts#L311-L314" }, { "inherits": { @@ -82172,7 +82172,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L315-L319" + "specLocation": "_types/analysis/token_filters.ts#L316-L320" }, { "inherits": { @@ -82210,7 +82210,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L321-L325" + "specLocation": "_types/analysis/token_filters.ts#L322-L326" }, { "inherits": { @@ -82278,7 +82278,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L96-L102" + "specLocation": "_types/analysis/token_filters.ts#L97-L103" }, { "inherits": { @@ -82393,7 +82393,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L109-L119" + "specLocation": "_types/analysis/token_filters.ts#L110-L120" }, { "inherits": { @@ -82508,7 +82508,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L121-L131" + "specLocation": "_types/analysis/token_filters.ts#L122-L132" }, { "inherits": { @@ -82532,7 +82532,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L327-L329" + "specLocation": "_types/analysis/token_filters.ts#L328-L330" }, { "inherits": { @@ -82567,7 +82567,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L331-L334" + "specLocation": "_types/analysis/token_filters.ts#L332-L335" }, { "inherits": { @@ -82602,7 +82602,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L336-L339" + "specLocation": "_types/analysis/token_filters.ts#L337-L340" }, { "inherits": { @@ -82626,7 +82626,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L341-L343" + "specLocation": "_types/analysis/token_filters.ts#L342-L344" }, { "inherits": { @@ -82830,7 +82830,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L150-L167" + "specLocation": "_types/analysis/token_filters.ts#L151-L168" }, { "inherits": { @@ -83012,7 +83012,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L133-L148" + "specLocation": "_types/analysis/token_filters.ts#L134-L149" }, { "inherits": { @@ -83521,7 +83521,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L53-L55" + "specLocation": "_types/analysis/token_filters.ts#L54-L56" }, { "codegenNames": [ @@ -83533,7 +83533,7 @@ "name": "Tokenizer", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L119-L121", + "specLocation": "_types/analysis/tokenizers.ts#L120-L122", "type": { "items": [ { @@ -83560,7 +83560,7 @@ "name": "TokenizerDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L123-L141", + "specLocation": "_types/analysis/tokenizers.ts#L124-L142", "type": { "items": [ { @@ -83717,7 +83717,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L55-L59" + "specLocation": "_types/analysis/tokenizers.ts#L56-L60" }, { "kind": "interface", @@ -83738,7 +83738,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L26-L28" + "specLocation": "_types/analysis/tokenizers.ts#L27-L29" }, { "inherits": { @@ -83809,7 +83809,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L30-L36" + "specLocation": "_types/analysis/tokenizers.ts#L31-L37" }, { "inherits": { @@ -83844,7 +83844,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L61-L64" + "specLocation": "_types/analysis/tokenizers.ts#L62-L65" }, { "inherits": { @@ -83868,7 +83868,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L66-L68" + "specLocation": "_types/analysis/tokenizers.ts#L67-L69" }, { "inherits": { @@ -83892,7 +83892,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L70-L72" + "specLocation": "_types/analysis/tokenizers.ts#L71-L73" }, { "inherits": { @@ -83963,7 +83963,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L38-L44" + "specLocation": "_types/analysis/tokenizers.ts#L39-L45" }, { "inherits": { @@ -84034,7 +84034,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L80-L86" + "specLocation": "_types/analysis/tokenizers.ts#L81-L87" }, { "inherits": { @@ -84140,7 +84140,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L88-L95" + "specLocation": "_types/analysis/tokenizers.ts#L89-L96" }, { "inherits": { @@ -84175,7 +84175,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L104-L107" + "specLocation": "_types/analysis/tokenizers.ts#L105-L108" }, { "inherits": { @@ -84210,7 +84210,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L109-L112" + "specLocation": "_types/analysis/tokenizers.ts#L110-L113" }, { "inherits": { @@ -84245,7 +84245,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L114-L117" + "specLocation": "_types/analysis/tokenizers.ts#L115-L118" }, { "inherits": { @@ -84406,7 +84406,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L97-L102" + "specLocation": "_types/analysis/tokenizers.ts#L98-L103" }, { "inherits": { @@ -90023,7 +90023,7 @@ "name": "FollowerIndexStatus", "namespace": "ccr.follow_info" }, - "specLocation": "ccr/follow_info/types.ts#L32-L35" + "specLocation": "ccr/follow_info/types.ts#L30-L33" }, { "kind": "enum", @@ -92511,7 +92511,7 @@ "name": "ShardStoreAllocation", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L47-L51" + "specLocation": "indices/shard_stores/types.ts#L48-L52" }, { "kind": "enum", @@ -92537,7 +92537,7 @@ "name": "ShardStoreStatus", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L62-L71" + "specLocation": "indices/shard_stores/types.ts#L63-L72" }, { "kind": "enum", @@ -92715,7 +92715,7 @@ "name": "ConvertType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L524-L532" + "specLocation": "ingest/_types/Processors.ts#L518-L526" }, { "kind": "enum", @@ -92731,7 +92731,7 @@ "name": "GeoGridTargetFormat", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L406-L409" + "specLocation": "ingest/_types/Processors.ts#L393-L396" }, { "kind": "enum", @@ -92750,7 +92750,7 @@ "name": "GeoGridTileType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L400-L404" + "specLocation": "ingest/_types/Processors.ts#L387-L391" }, { "kind": "enum", @@ -92768,7 +92768,7 @@ "name": "JsonProcessorConflictStrategy", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L963-L968" + "specLocation": "ingest/_types/Processors.ts#L957-L962" }, { "kind": "enum", @@ -92784,47 +92784,32 @@ "name": "ShapeType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L1188-L1191" + "specLocation": "ingest/_types/Processors.ts#L1182-L1185" }, { "kind": "enum", "members": [ { - "name": "NAME" - }, - { - "name": "MAJOR" - }, - { - "name": "MINOR" - }, - { - "name": "PATCH" - }, - { - "name": "OS" - }, - { - "name": "OS_NAME" + "name": "name" }, { - "name": "OS_MAJOR" + "name": "os" }, { - "name": "OS_MINOR" + "name": "device" }, { - "name": "DEVICE" + "name": "original" }, { - "name": "BUILD" + "name": "version" } ], "name": { "name": "UserAgentProperty", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L284-L295" + "specLocation": "ingest/_types/Processors.ts#L467-L473" }, { "kind": "enum", @@ -93172,7 +93157,7 @@ "name": "DeploymentAllocationState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L288-L301" + "specLocation": "ml/_types/TrainedModel.ts#L289-L302" }, { "kind": "enum", @@ -93194,7 +93179,7 @@ "name": "DeploymentAssignmentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L303-L308" + "specLocation": "ml/_types/TrainedModel.ts#L304-L309" }, { "kind": "enum", @@ -93216,7 +93201,7 @@ "name": "DeploymentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L273-L286" + "specLocation": "ml/_types/TrainedModel.ts#L274-L287" }, { "kind": "enum", @@ -93412,7 +93397,7 @@ "name": "RoutingState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L350-L371" + "specLocation": "ml/_types/TrainedModel.ts#L351-L372" }, { "kind": "enum", @@ -93493,7 +93478,7 @@ "name": "TrainedModelType", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L257-L271" + "specLocation": "ml/_types/TrainedModel.ts#L258-L272" }, { "kind": "enum", @@ -93509,7 +93494,7 @@ "name": "TrainingPriority", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L310-L313" + "specLocation": "ml/_types/TrainedModel.ts#L311-L314" }, { "codegenNames": [ @@ -101303,7 +101288,7 @@ "name": "UserProfileId", "namespace": "security._types" }, - "specLocation": "security/_types/UserProfile.ts#L25-L25", + "specLocation": "security/_types/UserProfile.ts#L26-L26", "type": { "kind": "instance_of", "type": { @@ -101434,7 +101419,7 @@ "name": "ApiKeyAggregate", "namespace": "security.query_api_keys" }, - "specLocation": "security/query_api_keys/types.ts#L122-L139", + "specLocation": "security/query_api_keys/types.ts#L123-L140", "type": { "items": [ { @@ -102746,7 +102731,7 @@ "name": "AcknowledgementOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L103-L107" + "specLocation": "watcher/_types/Action.ts#L109-L113" }, { "kind": "enum", @@ -102776,7 +102761,7 @@ "name": "ActionExecutionMode", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L67-L88" + "specLocation": "watcher/_types/Action.ts#L73-L94" }, { "kind": "enum", @@ -102798,7 +102783,7 @@ "name": "ActionStatusOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L96-L101" + "specLocation": "watcher/_types/Action.ts#L102-L107" }, { "kind": "enum", @@ -102826,7 +102811,7 @@ "name": "ActionType", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L58-L65" + "specLocation": "watcher/_types/Action.ts#L64-L71" }, { "kind": "type_alias", @@ -102834,7 +102819,7 @@ "name": "Actions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L56-L56", + "specLocation": "watcher/_types/Action.ts#L62-L62", "type": { "key": { "kind": "instance_of", @@ -102906,7 +102891,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L125-L130" + "specLocation": "watcher/_types/Action.ts#L131-L136" }, { "kind": "interface", @@ -102938,7 +102923,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L109-L112" + "specLocation": "watcher/_types/Action.ts#L115-L118" }, { "kind": "interface", @@ -102981,7 +102966,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L114-L118" + "specLocation": "watcher/_types/Action.ts#L120-L124" }, { "kind": "interface", @@ -103013,7 +102998,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L120-L123" + "specLocation": "watcher/_types/Action.ts#L126-L129" }, { "kind": "enum", @@ -109610,7 +109595,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L27-L30" + "specLocation": "cluster/_types/ComponentTemplate.ts#L30-L33" }, { "kind": "interface", @@ -109655,7 +109640,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L32-L37" + "specLocation": "cluster/_types/ComponentTemplate.ts#L35-L40" }, { "kind": "interface", @@ -109764,7 +109749,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L39-L51" + "specLocation": "cluster/_types/ComponentTemplate.ts#L42-L54" }, { "attachedBehaviors": [ @@ -115392,7 +115377,7 @@ } } ], - "specLocation": "eql/_types/EqlSearchResponseBase.ts#L24-L49" + "specLocation": "eql/_types/EqlSearchResponseBase.ts#L25-L50" }, { "generics": [ @@ -117536,7 +117521,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L28-L67" + "specLocation": "indices/_types/IndexTemplate.ts#L31-L70" }, { "kind": "interface", @@ -117613,7 +117598,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L82-L104" + "specLocation": "indices/_types/IndexTemplate.ts#L85-L107" }, { "kind": "interface", @@ -117649,7 +117634,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L69-L80" + "specLocation": "indices/_types/IndexTemplate.ts#L72-L83" }, { "kind": "interface", @@ -119810,7 +119795,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L297-L312" + "specLocation": "ingest/_types/Processors.ts#L284-L299" }, { "kind": "interface", @@ -120003,7 +119988,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L314-L355" + "specLocation": "ingest/_types/Processors.ts#L301-L342" }, { "inherits": { @@ -120057,7 +120042,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L481-L497" + "specLocation": "ingest/_types/Processors.ts#L475-L491" }, { "inherits": { @@ -120134,7 +120119,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L499-L522" + "specLocation": "ingest/_types/Processors.ts#L493-L516" }, { "inherits": { @@ -120200,7 +120185,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L534-L554" + "specLocation": "ingest/_types/Processors.ts#L528-L548" }, { "inherits": { @@ -120298,7 +120283,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L556-L589" + "specLocation": "ingest/_types/Processors.ts#L550-L583" }, { "inherits": { @@ -120380,7 +120365,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L631-L658" + "specLocation": "ingest/_types/Processors.ts#L625-L652" }, { "inherits": { @@ -120486,7 +120471,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L591-L629" + "specLocation": "ingest/_types/Processors.ts#L585-L623" }, { "inherits": { @@ -120552,7 +120537,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L660-L679" + "specLocation": "ingest/_types/Processors.ts#L654-L673" }, { "inherits": { @@ -120605,7 +120590,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L681-L699" + "specLocation": "ingest/_types/Processors.ts#L675-L693" }, { "inherits": { @@ -120620,7 +120605,7 @@ "namespace": "ingest._types" }, "properties": [], - "specLocation": "ingest/_types/Processors.ts#L701-L701" + "specLocation": "ingest/_types/Processors.ts#L695-L695" }, { "inherits": { @@ -120724,7 +120709,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L703-L742" + "specLocation": "ingest/_types/Processors.ts#L697-L736" }, { "inherits": { @@ -120752,7 +120737,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L744-L750" + "specLocation": "ingest/_types/Processors.ts#L738-L744" }, { "inherits": { @@ -120805,7 +120790,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L752-L766" + "specLocation": "ingest/_types/Processors.ts#L746-L760" }, { "inherits": { @@ -120932,7 +120917,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L357-L398" + "specLocation": "ingest/_types/Processors.ts#L344-L385" }, { "inherits": { @@ -121039,7 +121024,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L411-L445" + "specLocation": "ingest/_types/Processors.ts#L398-L432" }, { "inherits": { @@ -121131,7 +121116,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L768-L793" + "specLocation": "ingest/_types/Processors.ts#L762-L787" }, { "inherits": { @@ -121209,7 +121194,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L795-L819" + "specLocation": "ingest/_types/Processors.ts#L789-L813" }, { "inherits": { @@ -121263,7 +121248,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L821-L837" + "specLocation": "ingest/_types/Processors.ts#L815-L831" }, { "inherits": { @@ -121335,7 +121320,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L839-L858" + "specLocation": "ingest/_types/Processors.ts#L833-L852" }, { "kind": "interface", @@ -121369,7 +121354,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L860-L872", + "specLocation": "ingest/_types/Processors.ts#L854-L866", "variants": { "kind": "container" } @@ -121408,7 +121393,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L874-L885" + "specLocation": "ingest/_types/Processors.ts#L868-L879" }, { "kind": "interface", @@ -121482,7 +121467,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L887-L913" + "specLocation": "ingest/_types/Processors.ts#L881-L907" }, { "inherits": { @@ -121535,7 +121520,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L915-L930" + "specLocation": "ingest/_types/Processors.ts#L909-L924" }, { "inherits": { @@ -121614,7 +121599,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L932-L961" + "specLocation": "ingest/_types/Processors.ts#L926-L955" }, { "inherits": { @@ -121771,7 +121756,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L970-L1022" + "specLocation": "ingest/_types/Processors.ts#L964-L1016" }, { "inherits": { @@ -121825,7 +121810,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1024-L1040" + "specLocation": "ingest/_types/Processors.ts#L1018-L1034" }, { "inherits": { @@ -121866,7 +121851,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1042-L1053" + "specLocation": "ingest/_types/Processors.ts#L1036-L1047" }, { "inherits": { @@ -121919,7 +121904,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1055-L1069" + "specLocation": "ingest/_types/Processors.ts#L1049-L1063" }, { "inherits": { @@ -121972,7 +121957,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1071-L1087" + "specLocation": "ingest/_types/Processors.ts#L1065-L1081" }, { "inherits": { @@ -122054,7 +122039,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1089-L1117" + "specLocation": "ingest/_types/Processors.ts#L1083-L1111" }, { "inherits": { @@ -122126,7 +122111,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1119-L1139" + "specLocation": "ingest/_types/Processors.ts#L1113-L1133" }, { "inherits": { @@ -122212,7 +122197,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1141-L1175" + "specLocation": "ingest/_types/Processors.ts#L1135-L1169" }, { "inherits": { @@ -122255,7 +122240,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1177-L1186" + "specLocation": "ingest/_types/Processors.ts#L1171-L1180" }, { "inherits": { @@ -122308,7 +122293,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1193-L1209" + "specLocation": "ingest/_types/Processors.ts#L1187-L1203" }, { "inherits": { @@ -122387,7 +122372,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1211-L1236" + "specLocation": "ingest/_types/Processors.ts#L1205-L1230" }, { "inherits": { @@ -122441,7 +122426,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1238-L1254" + "specLocation": "ingest/_types/Processors.ts#L1232-L1248" }, { "inherits": { @@ -122495,7 +122480,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1256-L1272" + "specLocation": "ingest/_types/Processors.ts#L1250-L1266" }, { "inherits": { @@ -122549,7 +122534,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1274-L1290" + "specLocation": "ingest/_types/Processors.ts#L1268-L1284" }, { "inherits": { @@ -122629,7 +122614,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1292-L1318" + "specLocation": "ingest/_types/Processors.ts#L1286-L1312" }, { "inherits": { @@ -122669,20 +122654,6 @@ } } }, - { - "name": "options", - "required": false, - "type": { - "kind": "array_of", - "value": { - "kind": "instance_of", - "type": { - "name": "UserAgentProperty", - "namespace": "ingest._types" - } - } - } - }, { "description": "The name of the file in the `config/ingest-user-agent` directory containing the regular expressions for parsing the user agent string. Both the directory and the file have to be created before starting Elasticsearch. If not specified, ingest-user-agent will use the `regexes.yaml` from uap-core it ships with.", "name": "regex_file", @@ -122729,8 +122700,8 @@ "value": { "kind": "instance_of", "type": { - "name": "string", - "namespace": "_builtins" + "name": "UserAgentProperty", + "namespace": "ingest._types" } } } @@ -122756,7 +122727,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L447-L479" + "specLocation": "ingest/_types/Processors.ts#L434-L465" }, { "kind": "interface", @@ -125511,7 +125482,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L305-L321" + "specLocation": "ml/_types/DataframeAnalytics.ts#L306-L322" }, { "kind": "interface", @@ -125563,7 +125534,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L83-L100", + "specLocation": "ml/_types/DataframeAnalytics.ts#L84-L101", "variants": { "kind": "container" } @@ -125606,7 +125577,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L226-L235" + "specLocation": "ml/_types/DataframeAnalytics.ts#L227-L236" }, { "kind": "interface", @@ -125841,7 +125812,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L133-L212" + "specLocation": "ml/_types/DataframeAnalytics.ts#L134-L213" }, { "kind": "interface", @@ -125911,7 +125882,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L245-L257", + "specLocation": "ml/_types/DataframeAnalytics.ts#L246-L258", "variants": { "kind": "container" } @@ -125970,7 +125941,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L259-L266" + "specLocation": "ml/_types/DataframeAnalytics.ts#L260-L267" }, { "kind": "interface", @@ -125995,7 +125966,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L268-L271" + "specLocation": "ml/_types/DataframeAnalytics.ts#L269-L272" }, { "kind": "interface", @@ -126079,7 +126050,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L273-L285" + "specLocation": "ml/_types/DataframeAnalytics.ts#L274-L286" }, { "kind": "interface", @@ -126113,7 +126084,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L287-L292" + "specLocation": "ml/_types/DataframeAnalytics.ts#L288-L293" }, { "kind": "interface", @@ -126178,7 +126149,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L294-L303" + "specLocation": "ml/_types/DataframeAnalytics.ts#L295-L304" }, { "kind": "interface", @@ -126264,7 +126235,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L102-L131" + "specLocation": "ml/_types/DataframeAnalytics.ts#L103-L132" }, { "inherits": { @@ -126305,7 +126276,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L214-L224" + "specLocation": "ml/_types/DataframeAnalytics.ts#L215-L225" }, { "kind": "interface", @@ -126346,7 +126317,7 @@ } ], "shortcutProperty": "includes", - "specLocation": "ml/_types/DataframeAnalytics.ts#L237-L243" + "specLocation": "ml/_types/DataframeAnalytics.ts#L238-L244" }, { "kind": "interface", @@ -126463,7 +126434,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L76-L81" + "specLocation": "ml/_types/DataframeAnalytics.ts#L77-L82" }, { "kind": "interface", @@ -126523,7 +126494,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L38-L52" + "specLocation": "ml/_types/DataframeAnalytics.ts#L39-L53" }, { "kind": "interface", @@ -126620,7 +126591,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L323-L343" + "specLocation": "ml/_types/DataframeAnalytics.ts#L324-L344" }, { "kind": "interface", @@ -126666,7 +126637,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L372-L380", + "specLocation": "ml/_types/DataframeAnalytics.ts#L373-L381", "variants": { "kind": "container" } @@ -126748,7 +126719,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L382-L401" + "specLocation": "ml/_types/DataframeAnalytics.ts#L383-L402" }, { "kind": "interface", @@ -126926,7 +126897,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L418-L524" + "specLocation": "ml/_types/DataframeAnalytics.ts#L419-L525" }, { "kind": "interface", @@ -126978,7 +126949,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L562-L567" + "specLocation": "ml/_types/DataframeAnalytics.ts#L563-L568" }, { "kind": "interface", @@ -127015,7 +126986,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L569-L574" + "specLocation": "ml/_types/DataframeAnalytics.ts#L570-L575" }, { "kind": "interface", @@ -127070,7 +127041,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L403-L416" + "specLocation": "ml/_types/DataframeAnalytics.ts#L404-L417" }, { "kind": "interface", @@ -127155,7 +127126,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L526-L560" + "specLocation": "ml/_types/DataframeAnalytics.ts#L527-L561" }, { "kind": "interface", @@ -127201,7 +127172,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L363-L370" + "specLocation": "ml/_types/DataframeAnalytics.ts#L364-L371" }, { "kind": "interface", @@ -127268,7 +127239,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L352-L361" + "specLocation": "ml/_types/DataframeAnalytics.ts#L353-L362" }, { "kind": "interface", @@ -127302,7 +127273,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L345-L350" + "specLocation": "ml/_types/DataframeAnalytics.ts#L346-L351" }, { "kind": "interface", @@ -129509,7 +129480,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L129-L144" + "specLocation": "ml/_types/Bucket.ts#L130-L145" }, { "kind": "interface", @@ -129541,7 +129512,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L145-L148" + "specLocation": "ml/_types/Bucket.ts#L146-L149" }, { "kind": "interface", @@ -129789,7 +129760,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L164-L199" + "specLocation": "ml/_types/TrainedModel.ts#L165-L200" }, { "description": "Inference configuration provided when storing the model config", @@ -130691,7 +130662,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L201-L204" + "specLocation": "ml/_types/TrainedModel.ts#L202-L205" }, { "kind": "interface", @@ -130768,7 +130739,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L206-L214" + "specLocation": "ml/_types/TrainedModel.ts#L207-L215" }, { "kind": "interface", @@ -130840,7 +130811,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L216-L230" + "specLocation": "ml/_types/TrainedModel.ts#L217-L231" }, { "kind": "interface", @@ -130892,7 +130863,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L232-L239" + "specLocation": "ml/_types/TrainedModel.ts#L233-L240" }, { "kind": "interface", @@ -130938,7 +130909,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L248-L255" + "specLocation": "ml/_types/TrainedModel.ts#L249-L256" }, { "kind": "interface", @@ -130975,7 +130946,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L241-L246" + "specLocation": "ml/_types/TrainedModel.ts#L242-L247" }, { "kind": "interface", @@ -130996,7 +130967,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L419-L421" + "specLocation": "ml/_types/TrainedModel.ts#L420-L422" }, { "kind": "interface", @@ -131017,7 +130988,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L423-L425" + "specLocation": "ml/_types/TrainedModel.ts#L424-L426" }, { "kind": "interface", @@ -131051,7 +131022,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L427-L436" + "specLocation": "ml/_types/TrainedModel.ts#L428-L437" }, { "kind": "interface", @@ -131142,7 +131113,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L41-L59" + "specLocation": "ml/_types/TrainedModel.ts#L42-L60" }, { "kind": "interface", @@ -131343,7 +131314,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L61-L101" + "specLocation": "ml/_types/TrainedModel.ts#L62-L102" }, { "kind": "interface", @@ -131389,7 +131360,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L393-L400" + "specLocation": "ml/_types/TrainedModel.ts#L394-L401" }, { "kind": "interface", @@ -131549,7 +131520,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L132-L162" + "specLocation": "ml/_types/TrainedModel.ts#L133-L163" }, { "kind": "interface", @@ -131607,7 +131578,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L373-L391" + "specLocation": "ml/_types/TrainedModel.ts#L374-L392" }, { "kind": "interface", @@ -131688,7 +131659,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L103-L123" + "specLocation": "ml/_types/TrainedModel.ts#L104-L124" }, { "kind": "interface", @@ -131722,7 +131693,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L125-L130" + "specLocation": "ml/_types/TrainedModel.ts#L126-L131" }, { "kind": "interface", @@ -134140,7 +134111,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L402-L417" + "specLocation": "ml/_types/TrainedModel.ts#L403-L418" }, { "kind": "interface", @@ -134251,7 +134222,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L315-L348" + "specLocation": "ml/_types/TrainedModel.ts#L316-L349" }, { "kind": "interface", @@ -136707,7 +136678,7 @@ } } ], - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L27-L32" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33" }, { "kind": "interface", @@ -136921,7 +136892,7 @@ } } ], - "specLocation": "security/_types/ApiKey.ts#L26-L88" + "specLocation": "security/_types/ApiKey.ts#L27-L89" }, { "kind": "interface", @@ -137038,7 +137009,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L31-L64" + "specLocation": "security/_types/RoleDescriptor.ts#L28-L61" }, { "kind": "interface", @@ -137526,7 +137497,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L63-L120", + "specLocation": "security/query_api_keys/types.ts#L64-L121", "variants": { "kind": "container", "nonExhaustive": true @@ -137749,7 +137720,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L141-L205", + "specLocation": "security/query_api_keys/types.ts#L142-L206", "variants": { "kind": "container", "nonExhaustive": true @@ -137828,7 +137799,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L207-L227" + "specLocation": "security/query_api_keys/types.ts#L208-L228" }, { "kind": "interface", diff --git a/output/schema/schema.json b/output/schema/schema.json index fdefbb9862..fd92546bc2 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -26693,7 +26693,7 @@ } } ], - "specLocation": "_global/knn_search/KnnSearchRequest.ts#L26-L79" + "specLocation": "_global/knn_search/KnnSearchRequest.ts#L27-L80" }, { "kind": "response", @@ -33675,7 +33675,7 @@ "name": "BoundaryScanner", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L26-L45" + "specLocation": "_global/search/_types/highlighting.ts#L27-L46" }, { "kind": "interface", @@ -34736,7 +34736,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L152-L155" + "specLocation": "_global/search/_types/highlighting.ts#L153-L156" }, { "kind": "interface", @@ -35020,7 +35020,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L47-L150" + "specLocation": "_global/search/_types/highlighting.ts#L48-L151" }, { "kind": "interface", @@ -35058,7 +35058,7 @@ } } ], - "specLocation": "_global/search/_types/highlighting.ts#L192-L195" + "specLocation": "_global/search/_types/highlighting.ts#L193-L196" }, { "kind": "enum", @@ -35074,7 +35074,7 @@ "name": "HighlighterEncoder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L157-L160" + "specLocation": "_global/search/_types/highlighting.ts#L158-L161" }, { "kind": "enum", @@ -35090,7 +35090,7 @@ "name": "HighlighterFragmenter", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L162-L165" + "specLocation": "_global/search/_types/highlighting.ts#L163-L166" }, { "kind": "enum", @@ -35103,7 +35103,7 @@ "name": "HighlighterOrder", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L167-L169" + "specLocation": "_global/search/_types/highlighting.ts#L168-L170" }, { "kind": "enum", @@ -35116,7 +35116,7 @@ "name": "HighlighterTagsSchema", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L171-L173" + "specLocation": "_global/search/_types/highlighting.ts#L172-L174" }, { "kind": "enum", @@ -35140,7 +35140,7 @@ "name": "HighlighterType", "namespace": "_global.search._types" }, - "specLocation": "_global/search/_types/highlighting.ts#L175-L190" + "specLocation": "_global/search/_types/highlighting.ts#L176-L191" }, { "kind": "interface", @@ -43016,7 +43016,7 @@ } ], "shortcutProperty": "order", - "specLocation": "_types/sort.ts#L43-L52" + "specLocation": "_types/sort.ts#L44-L53" }, { "kind": "enum", @@ -43038,7 +43038,7 @@ "name": "FieldSortNumericType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L36-L41" + "specLocation": "_types/sort.ts#L37-L42" }, { "kind": "type_alias", @@ -43455,7 +43455,7 @@ } } ], - "specLocation": "_types/sort.ts#L58-L70" + "specLocation": "_types/sort.ts#L59-L71" }, { "kind": "enum", @@ -45405,7 +45405,7 @@ } } ], - "specLocation": "_types/sort.ts#L29-L34" + "specLocation": "_types/sort.ts#L30-L35" }, { "kind": "interface", @@ -46872,7 +46872,7 @@ } } ], - "specLocation": "_types/sort.ts#L54-L56" + "specLocation": "_types/sort.ts#L55-L57" }, { "kind": "interface", @@ -47085,7 +47085,7 @@ } } ], - "specLocation": "_types/sort.ts#L72-L78" + "specLocation": "_types/sort.ts#L73-L79" }, { "kind": "enum", @@ -47104,7 +47104,7 @@ "name": "ScriptSortType", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L80-L84" + "specLocation": "_types/sort.ts#L81-L85" }, { "kind": "interface", @@ -48106,7 +48106,7 @@ "name": "Sort", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L104-L104", + "specLocation": "_types/sort.ts#L105-L105", "type": { "kind": "union_of", "items": [ @@ -48140,7 +48140,7 @@ "name": "SortCombinations", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L98-L102", + "specLocation": "_types/sort.ts#L99-L103", "type": { "kind": "union_of", "items": [ @@ -48184,7 +48184,7 @@ "name": "SortMode", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L108-L117" + "specLocation": "_types/sort.ts#L109-L118" }, { "kind": "interface", @@ -48271,7 +48271,7 @@ } } ], - "specLocation": "_types/sort.ts#L86-L96", + "specLocation": "_types/sort.ts#L87-L97", "variants": { "kind": "container" } @@ -48292,7 +48292,7 @@ "name": "SortOrder", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L119-L128" + "specLocation": "_types/sort.ts#L120-L129" }, { "kind": "type_alias", @@ -48300,7 +48300,7 @@ "name": "SortResults", "namespace": "_types" }, - "specLocation": "_types/sort.ts#L106-L106", + "specLocation": "_types/sort.ts#L107-L107", "type": { "kind": "array_of", "value": { @@ -49598,7 +49598,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L60-L70" + "specLocation": "_types/aggregations/bucket.ts#L55-L65" }, { "kind": "interface", @@ -50157,7 +50157,7 @@ "name": "AggregateOrder", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L988-L990", + "specLocation": "_types/aggregations/bucket.ts#L983-L985", "type": { "kind": "union_of", "items": [ @@ -51389,7 +51389,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L679-L692" + "specLocation": "_types/aggregations/bucket.ts#L674-L687" }, { "kind": "interface", @@ -51611,7 +51611,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L72-L107" + "specLocation": "_types/aggregations/bucket.ts#L67-L102" }, { "kind": "interface", @@ -51872,7 +51872,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L53-L58" + "specLocation": "_types/aggregations/bucket.ts#L48-L53" }, { "kind": "interface", @@ -52406,7 +52406,7 @@ "name": "CalendarInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L256-L273" + "specLocation": "_types/aggregations/bucket.ts#L251-L268" }, { "kind": "interface", @@ -52660,7 +52660,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1050-L1114" + "specLocation": "_types/aggregations/bucket.ts#L1045-L1109" }, { "kind": "type_alias", @@ -52672,7 +52672,7 @@ "name": "CategorizeTextAnalyzer", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1116-L1119", + "specLocation": "_types/aggregations/bucket.ts#L1111-L1114", "type": { "kind": "union_of", "items": [ @@ -52725,7 +52725,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L742-L751" + "specLocation": "_types/aggregations/bucket.ts#L737-L746" }, { "kind": "interface", @@ -52772,7 +52772,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L118-L123" + "specLocation": "_types/aggregations/bucket.ts#L113-L118" }, { "kind": "interface", @@ -52817,7 +52817,7 @@ "name": "CompositeAggregateKey", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L125-L125", + "specLocation": "_types/aggregations/bucket.ts#L120-L120", "type": { "kind": "dictionary_of", "key": { @@ -52902,7 +52902,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L127-L143" + "specLocation": "_types/aggregations/bucket.ts#L122-L138" }, { "kind": "interface", @@ -52980,7 +52980,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L164-L173" + "specLocation": "_types/aggregations/bucket.ts#L159-L168" }, { "kind": "interface", @@ -53038,7 +53038,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L145-L162" + "specLocation": "_types/aggregations/bucket.ts#L140-L157" }, { "kind": "interface", @@ -53141,7 +53141,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L181-L189" + "specLocation": "_types/aggregations/bucket.ts#L176-L184" }, { "kind": "interface", @@ -53179,7 +53179,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L191-L194" + "specLocation": "_types/aggregations/bucket.ts#L186-L189" }, { "kind": "interface", @@ -53206,7 +53206,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L177-L179" + "specLocation": "_types/aggregations/bucket.ts#L172-L174" }, { "kind": "interface", @@ -53221,7 +53221,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L175-L175" + "specLocation": "_types/aggregations/bucket.ts#L170-L170" }, { "kind": "interface", @@ -53340,7 +53340,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1121-L1125" + "specLocation": "_types/aggregations/bucket.ts#L1116-L1120" }, { "kind": "interface", @@ -53587,7 +53587,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L196-L254" + "specLocation": "_types/aggregations/bucket.ts#L191-L249" }, { "kind": "interface", @@ -53745,7 +53745,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L275-L301" + "specLocation": "_types/aggregations/bucket.ts#L270-L296" }, { "kind": "interface", @@ -53791,7 +53791,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L312-L325" + "specLocation": "_types/aggregations/bucket.ts#L307-L320" }, { "kind": "interface", @@ -53923,7 +53923,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L327-L348" + "specLocation": "_types/aggregations/bucket.ts#L322-L343" }, { "kind": "interface", @@ -54086,7 +54086,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L496-L505" + "specLocation": "_types/aggregations/bucket.ts#L491-L500" }, { "kind": "interface", @@ -54426,7 +54426,7 @@ "name": "FieldDateMath", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L303-L310", + "specLocation": "_types/aggregations/bucket.ts#L298-L305", "type": { "kind": "union_of", "items": [ @@ -54564,7 +54564,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L365-L385" + "specLocation": "_types/aggregations/bucket.ts#L360-L380" }, { "kind": "interface", @@ -54737,7 +54737,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1172-L1196" + "specLocation": "_types/aggregations/bucket.ts#L1167-L1191" }, { "kind": "interface", @@ -54837,7 +54837,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1158-L1170" + "specLocation": "_types/aggregations/bucket.ts#L1153-L1165" }, { "kind": "enum", @@ -55091,7 +55091,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L387-L410" + "specLocation": "_types/aggregations/bucket.ts#L382-L405" }, { "kind": "interface", @@ -55194,7 +55194,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L412-L437" + "specLocation": "_types/aggregations/bucket.ts#L407-L432" }, { "kind": "interface", @@ -55544,7 +55544,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L439-L465" + "specLocation": "_types/aggregations/bucket.ts#L434-L460" }, { "kind": "interface", @@ -55652,7 +55652,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L467-L492" + "specLocation": "_types/aggregations/bucket.ts#L462-L487" }, { "kind": "interface", @@ -55686,7 +55686,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L494-L494" + "specLocation": "_types/aggregations/bucket.ts#L489-L489" }, { "kind": "interface", @@ -55708,7 +55708,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L753-L758" + "specLocation": "_types/aggregations/bucket.ts#L748-L753" }, { "kind": "interface", @@ -55952,7 +55952,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L507-L553" + "specLocation": "_types/aggregations/bucket.ts#L502-L548" }, { "kind": "interface", @@ -56597,7 +56597,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1127-L1156" + "specLocation": "_types/aggregations/bucket.ts#L1122-L1151" }, { "kind": "interface", @@ -56728,7 +56728,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L555-L564" + "specLocation": "_types/aggregations/bucket.ts#L550-L559" }, { "kind": "interface", @@ -56798,7 +56798,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L566-L579" + "specLocation": "_types/aggregations/bucket.ts#L561-L574" }, { "kind": "interface", @@ -57516,7 +57516,7 @@ "name": "MinimumInterval", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L109-L116" + "specLocation": "_types/aggregations/bucket.ts#L104-L111" }, { "kind": "type_alias", @@ -57615,7 +57615,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L581-L587" + "specLocation": "_types/aggregations/bucket.ts#L576-L582" }, { "kind": "enum", @@ -57969,7 +57969,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L631-L641" + "specLocation": "_types/aggregations/bucket.ts#L626-L636" }, { "kind": "interface", @@ -58114,7 +58114,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L589-L629" + "specLocation": "_types/aggregations/bucket.ts#L584-L624" }, { "kind": "interface", @@ -58203,7 +58203,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L760-L769" + "specLocation": "_types/aggregations/bucket.ts#L755-L764" }, { "kind": "interface", @@ -58250,7 +58250,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L643-L648" + "specLocation": "_types/aggregations/bucket.ts#L638-L643" }, { "kind": "interface", @@ -58360,7 +58360,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L650-L655" + "specLocation": "_types/aggregations/bucket.ts#L645-L650" }, { "kind": "interface", @@ -58369,7 +58369,7 @@ "namespace": "_types.aggregations" }, "properties": [], - "specLocation": "_types/aggregations/bucket.ts#L771-L771" + "specLocation": "_types/aggregations/bucket.ts#L766-L766" }, { "kind": "interface", @@ -58782,7 +58782,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L657-L677" + "specLocation": "_types/aggregations/bucket.ts#L652-L672" }, { "kind": "interface", @@ -58958,7 +58958,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L694-L724" + "specLocation": "_types/aggregations/bucket.ts#L689-L719" }, { "kind": "interface", @@ -59103,7 +59103,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L726-L732" + "specLocation": "_types/aggregations/bucket.ts#L721-L727" }, { "kind": "interface", @@ -59151,7 +59151,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L734-L740" + "specLocation": "_types/aggregations/bucket.ts#L729-L735" }, { "kind": "enum", @@ -59173,7 +59173,7 @@ "name": "SamplerAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L350-L363" + "specLocation": "_types/aggregations/bucket.ts#L345-L358" }, { "kind": "interface", @@ -59194,7 +59194,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L773-L775" + "specLocation": "_types/aggregations/bucket.ts#L768-L770" }, { "kind": "interface", @@ -59700,7 +59700,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L777-L841" + "specLocation": "_types/aggregations/bucket.ts#L772-L836" }, { "kind": "interface", @@ -59962,7 +59962,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L843-L915" + "specLocation": "_types/aggregations/bucket.ts#L838-L910" }, { "kind": "interface", @@ -61372,7 +61372,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L917-L982" + "specLocation": "_types/aggregations/bucket.ts#L912-L977" }, { "kind": "enum", @@ -61390,7 +61390,7 @@ "name": "TermsAggregationCollectMode", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L992-L1001" + "specLocation": "_types/aggregations/bucket.ts#L987-L996" }, { "kind": "enum", @@ -61412,7 +61412,7 @@ "name": "TermsAggregationExecutionHint", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1003-L1008" + "specLocation": "_types/aggregations/bucket.ts#L998-L1003" }, { "kind": "interface", @@ -61454,7 +61454,7 @@ "name": "TermsExclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1013-L1014", + "specLocation": "_types/aggregations/bucket.ts#L1008-L1009", "type": { "kind": "union_of", "items": [ @@ -61489,7 +61489,7 @@ "name": "TermsInclude", "namespace": "_types.aggregations" }, - "specLocation": "_types/aggregations/bucket.ts#L1010-L1011", + "specLocation": "_types/aggregations/bucket.ts#L1005-L1006", "type": { "kind": "union_of", "items": [ @@ -61552,7 +61552,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1016-L1025" + "specLocation": "_types/aggregations/bucket.ts#L1011-L1020" }, { "kind": "interface", @@ -62279,7 +62279,7 @@ } } ], - "specLocation": "_types/aggregations/bucket.ts#L1027-L1048" + "specLocation": "_types/aggregations/bucket.ts#L1022-L1043" }, { "kind": "interface", @@ -63010,7 +63010,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L169-L172" + "specLocation": "_types/analysis/token_filters.ts#L170-L173" }, { "kind": "interface", @@ -63420,7 +63420,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L55-L59" + "specLocation": "_types/analysis/tokenizers.ts#L56-L60" }, { "kind": "interface", @@ -63571,7 +63571,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L174-L180" + "specLocation": "_types/analysis/token_filters.ts#L175-L181" }, { "kind": "interface", @@ -63667,7 +63667,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L43-L51" + "specLocation": "_types/analysis/token_filters.ts#L44-L52" }, { "kind": "interface", @@ -63716,7 +63716,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L182-L186" + "specLocation": "_types/analysis/token_filters.ts#L183-L187" }, { "kind": "interface", @@ -63978,7 +63978,7 @@ "name": "DelimitedPayloadEncoding", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L61-L65" + "specLocation": "_types/analysis/token_filters.ts#L62-L66" }, { "kind": "interface", @@ -64024,7 +64024,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L67-L71" + "specLocation": "_types/analysis/token_filters.ts#L68-L72" }, { "kind": "interface", @@ -64048,7 +64048,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L53-L55" + "specLocation": "_types/analysis/token_filters.ts#L54-L56" }, { "kind": "interface", @@ -64118,7 +64118,7 @@ "name": "EdgeNGramSide", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L73-L76" + "specLocation": "_types/analysis/token_filters.ts#L74-L77" }, { "kind": "interface", @@ -64195,7 +64195,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L78-L84" + "specLocation": "_types/analysis/token_filters.ts#L79-L85" }, { "kind": "interface", @@ -64266,7 +64266,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L30-L36" + "specLocation": "_types/analysis/tokenizers.ts#L31-L37" }, { "kind": "interface", @@ -64335,7 +64335,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L188-L193" + "specLocation": "_types/analysis/token_filters.ts#L189-L194" }, { "kind": "interface", @@ -64559,7 +64559,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L195-L199" + "specLocation": "_types/analysis/token_filters.ts#L196-L200" }, { "kind": "interface", @@ -65029,7 +65029,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L201-L207" + "specLocation": "_types/analysis/token_filters.ts#L202-L208" }, { "kind": "interface", @@ -65053,7 +65053,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L57-L59" + "specLocation": "_types/analysis/token_filters.ts#L58-L60" }, { "kind": "interface", @@ -65756,7 +65756,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L240-L242" + "specLocation": "_types/analysis/token_filters.ts#L241-L243" }, { "kind": "enum", @@ -65772,7 +65772,7 @@ "name": "KeepTypesMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L214-L217" + "specLocation": "_types/analysis/token_filters.ts#L215-L218" }, { "kind": "interface", @@ -65821,7 +65821,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L219-L223" + "specLocation": "_types/analysis/token_filters.ts#L220-L224" }, { "kind": "interface", @@ -65881,7 +65881,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L225-L230" + "specLocation": "_types/analysis/token_filters.ts#L226-L231" }, { "kind": "interface", @@ -65981,7 +65981,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L232-L238" + "specLocation": "_types/analysis/token_filters.ts#L233-L239" }, { "kind": "interface", @@ -66016,7 +66016,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L61-L64" + "specLocation": "_types/analysis/tokenizers.ts#L62-L65" }, { "kind": "interface", @@ -66621,7 +66621,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L244-L248" + "specLocation": "_types/analysis/token_filters.ts#L245-L249" }, { "kind": "interface", @@ -66645,7 +66645,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L66-L68" + "specLocation": "_types/analysis/tokenizers.ts#L67-L69" }, { "kind": "interface", @@ -66700,7 +66700,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L250-L254" + "specLocation": "_types/analysis/token_filters.ts#L251-L255" }, { "kind": "interface", @@ -66807,7 +66807,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L256-L259" + "specLocation": "_types/analysis/token_filters.ts#L257-L260" }, { "kind": "interface", @@ -66831,7 +66831,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L70-L72" + "specLocation": "_types/analysis/tokenizers.ts#L71-L73" }, { "kind": "interface", @@ -66938,7 +66938,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L261-L265" + "specLocation": "_types/analysis/token_filters.ts#L262-L266" }, { "kind": "interface", @@ -67004,7 +67004,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L267-L272" + "specLocation": "_types/analysis/token_filters.ts#L268-L273" }, { "kind": "interface", @@ -67075,7 +67075,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L38-L44" + "specLocation": "_types/analysis/tokenizers.ts#L39-L45" }, { "kind": "interface", @@ -67159,7 +67159,7 @@ "name": "NoriDecompoundMode", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L74-L78" + "specLocation": "_types/analysis/tokenizers.ts#L75-L79" }, { "kind": "interface", @@ -67197,7 +67197,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L274-L277" + "specLocation": "_types/analysis/token_filters.ts#L275-L278" }, { "kind": "interface", @@ -67268,7 +67268,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L80-L86" + "specLocation": "_types/analysis/tokenizers.ts#L81-L87" }, { "kind": "type_alias", @@ -67462,7 +67462,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L88-L95" + "specLocation": "_types/analysis/tokenizers.ts#L89-L96" }, { "kind": "interface", @@ -67593,7 +67593,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L279-L283" + "specLocation": "_types/analysis/token_filters.ts#L280-L284" }, { "kind": "interface", @@ -67718,7 +67718,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L285-L291" + "specLocation": "_types/analysis/token_filters.ts#L286-L292" }, { "kind": "interface", @@ -67775,7 +67775,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L97-L102" + "specLocation": "_types/analysis/tokenizers.ts#L98-L103" }, { "kind": "interface", @@ -68071,7 +68071,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L293-L295" + "specLocation": "_types/analysis/token_filters.ts#L294-L296" }, { "kind": "interface", @@ -68160,7 +68160,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L297-L300" + "specLocation": "_types/analysis/token_filters.ts#L298-L301" }, { "kind": "interface", @@ -68184,7 +68184,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L302-L304" + "specLocation": "_types/analysis/token_filters.ts#L303-L305" }, { "kind": "interface", @@ -68208,7 +68208,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L306-L308" + "specLocation": "_types/analysis/token_filters.ts#L307-L309" }, { "kind": "interface", @@ -68484,7 +68484,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L86-L94" + "specLocation": "_types/analysis/token_filters.ts#L87-L95" }, { "kind": "interface", @@ -68675,7 +68675,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L310-L313" + "specLocation": "_types/analysis/token_filters.ts#L311-L314" }, { "kind": "interface", @@ -68858,7 +68858,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L104-L107" + "specLocation": "_types/analysis/tokenizers.ts#L105-L108" }, { "kind": "interface", @@ -68907,7 +68907,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L315-L319" + "specLocation": "_types/analysis/token_filters.ts#L316-L320" }, { "kind": "interface", @@ -68945,7 +68945,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L321-L325" + "specLocation": "_types/analysis/token_filters.ts#L322-L326" }, { "kind": "interface", @@ -69064,7 +69064,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L96-L102" + "specLocation": "_types/analysis/token_filters.ts#L97-L103" }, { "kind": "type_alias", @@ -69165,7 +69165,7 @@ "name": "SynonymFormat", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L104-L107" + "specLocation": "_types/analysis/token_filters.ts#L105-L108" }, { "kind": "interface", @@ -69280,7 +69280,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L109-L119" + "specLocation": "_types/analysis/token_filters.ts#L110-L120" }, { "kind": "interface", @@ -69395,7 +69395,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L121-L131" + "specLocation": "_types/analysis/token_filters.ts#L122-L132" }, { "kind": "interface", @@ -69463,7 +69463,7 @@ "name": "TokenChar", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L46-L53" + "specLocation": "_types/analysis/tokenizers.ts#L47-L54" }, { "kind": "type_alias", @@ -69475,7 +69475,7 @@ "name": "TokenFilter", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L345-L347", + "specLocation": "_types/analysis/token_filters.ts#L346-L348", "type": { "kind": "union_of", "items": [ @@ -69515,7 +69515,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L39-L41" + "specLocation": "_types/analysis/token_filters.ts#L40-L42" }, { "kind": "type_alias", @@ -69523,7 +69523,7 @@ "name": "TokenFilterDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/token_filters.ts#L349-L401", + "specLocation": "_types/analysis/token_filters.ts#L350-L402", "type": { "kind": "union_of", "items": [ @@ -69874,7 +69874,7 @@ "name": "Tokenizer", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L119-L121", + "specLocation": "_types/analysis/tokenizers.ts#L120-L122", "type": { "kind": "union_of", "items": [ @@ -69914,7 +69914,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L26-L28" + "specLocation": "_types/analysis/tokenizers.ts#L27-L29" }, { "kind": "type_alias", @@ -69922,7 +69922,7 @@ "name": "TokenizerDefinition", "namespace": "_types.analysis" }, - "specLocation": "_types/analysis/tokenizers.ts#L123-L141", + "specLocation": "_types/analysis/tokenizers.ts#L124-L142", "type": { "kind": "union_of", "items": [ @@ -70054,7 +70054,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L327-L329" + "specLocation": "_types/analysis/token_filters.ts#L328-L330" }, { "kind": "interface", @@ -70089,7 +70089,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L331-L334" + "specLocation": "_types/analysis/token_filters.ts#L332-L335" }, { "kind": "interface", @@ -70178,7 +70178,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L109-L112" + "specLocation": "_types/analysis/tokenizers.ts#L110-L113" }, { "kind": "interface", @@ -70213,7 +70213,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L336-L339" + "specLocation": "_types/analysis/token_filters.ts#L337-L340" }, { "kind": "interface", @@ -70237,7 +70237,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L341-L343" + "specLocation": "_types/analysis/token_filters.ts#L342-L344" }, { "kind": "interface", @@ -70301,7 +70301,7 @@ } } ], - "specLocation": "_types/analysis/tokenizers.ts#L114-L117" + "specLocation": "_types/analysis/tokenizers.ts#L115-L118" }, { "kind": "interface", @@ -70505,7 +70505,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L150-L167" + "specLocation": "_types/analysis/token_filters.ts#L151-L168" }, { "kind": "interface", @@ -70687,7 +70687,7 @@ } } ], - "specLocation": "_types/analysis/token_filters.ts#L133-L148" + "specLocation": "_types/analysis/token_filters.ts#L134-L149" }, { "kind": "interface", @@ -76558,7 +76558,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L71-L74" + "specLocation": "_types/query_dsl/specialized.ts#L72-L75" }, { "kind": "interface", @@ -76868,7 +76868,7 @@ "name": "DistanceFeatureQuery", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L76-L84", + "specLocation": "_types/query_dsl/specialized.ts#L77-L85", "type": { "kind": "union_of", "items": [ @@ -76963,7 +76963,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L39-L59" + "specLocation": "_types/query_dsl/specialized.ts#L40-L60" }, { "kind": "interface", @@ -77746,7 +77746,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L66-L69" + "specLocation": "_types/query_dsl/specialized.ts#L67-L70" }, { "kind": "interface", @@ -78980,7 +78980,7 @@ "name": "Like", "namespace": "_types.query_dsl" }, - "specLocation": "_types/query_dsl/specialized.ts#L194-L199", + "specLocation": "_types/query_dsl/specialized.ts#L195-L200", "type": { "kind": "union_of", "items": [ @@ -79112,7 +79112,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L170-L192" + "specLocation": "_types/query_dsl/specialized.ts#L171-L193" }, { "kind": "interface", @@ -79915,7 +79915,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L86-L168" + "specLocation": "_types/query_dsl/specialized.ts#L87-L169" }, { "kind": "interface", @@ -80514,7 +80514,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L201-L238" + "specLocation": "_types/query_dsl/specialized.ts#L202-L239" }, { "kind": "interface", @@ -80548,7 +80548,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L261-L270" + "specLocation": "_types/query_dsl/specialized.ts#L262-L271" }, { "kind": "interface", @@ -80607,7 +80607,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L240-L259", + "specLocation": "_types/query_dsl/specialized.ts#L241-L260", "variants": { "kind": "container" } @@ -82372,7 +82372,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L272-L272" + "specLocation": "_types/query_dsl/specialized.ts#L273-L273" }, { "kind": "interface", @@ -82387,7 +82387,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L274-L274" + "specLocation": "_types/query_dsl/specialized.ts#L275-L275" }, { "kind": "interface", @@ -82415,7 +82415,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L276-L281" + "specLocation": "_types/query_dsl/specialized.ts#L277-L282" }, { "kind": "interface", @@ -82443,7 +82443,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L283-L288" + "specLocation": "_types/query_dsl/specialized.ts#L284-L289" }, { "kind": "interface", @@ -82483,7 +82483,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L290-L299" + "specLocation": "_types/query_dsl/specialized.ts#L291-L300" }, { "kind": "interface", @@ -82559,7 +82559,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L301-L324" + "specLocation": "_types/query_dsl/specialized.ts#L302-L325" }, { "kind": "interface", @@ -82698,7 +82698,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L380-L384" + "specLocation": "_types/query_dsl/specialized.ts#L381-L385" }, { "kind": "interface", @@ -82726,7 +82726,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L326-L332" + "specLocation": "_types/query_dsl/specialized.ts#L327-L333" }, { "kind": "interface", @@ -82800,7 +82800,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L334-L348" + "specLocation": "_types/query_dsl/specialized.ts#L335-L349" }, { "kind": "interface", @@ -82886,7 +82886,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L365-L378" + "specLocation": "_types/query_dsl/specialized.ts#L366-L379" }, { "kind": "interface", @@ -82945,7 +82945,7 @@ } } ], - "specLocation": "_types/query_dsl/specialized.ts#L350-L363" + "specLocation": "_types/query_dsl/specialized.ts#L351-L364" }, { "kind": "enum", @@ -84374,7 +84374,7 @@ "namespace": "_types.query_dsl" }, "properties": [], - "specLocation": "_types/query_dsl/specialized.ts#L61-L64" + "specLocation": "_types/query_dsl/specialized.ts#L62-L65" }, { "kind": "interface", @@ -84470,7 +84470,7 @@ } } ], - "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L25-L30" + "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L27-L32" }, { "kind": "interface", @@ -98734,7 +98734,7 @@ } } ], - "specLocation": "cat/tasks/CatTasksRequest.ts#L22-L47" + "specLocation": "cat/tasks/CatTasksRequest.ts#L23-L48" }, { "kind": "response", @@ -101104,7 +101104,7 @@ } } ], - "specLocation": "ccr/follow_info/types.ts#L24-L30" + "specLocation": "ccr/follow_info/types.ts#L22-L28" }, { "kind": "interface", @@ -101224,7 +101224,7 @@ } } ], - "specLocation": "ccr/follow_info/types.ts#L37-L48" + "specLocation": "ccr/follow_info/types.ts#L38-L49" }, { "kind": "enum", @@ -101240,7 +101240,7 @@ "name": "FollowerIndexStatus", "namespace": "ccr.follow_info" }, - "specLocation": "ccr/follow_info/types.ts#L32-L35" + "specLocation": "ccr/follow_info/types.ts#L30-L33" }, { "kind": "request", @@ -102308,7 +102308,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L32-L38" + "specLocation": "ccr/stats/types.ts.ts#L33-L39" }, { "kind": "interface", @@ -102360,7 +102360,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L26-L30" + "specLocation": "ccr/stats/types.ts.ts#L27-L31" }, { "kind": "interface", @@ -102384,7 +102384,7 @@ } } ], - "specLocation": "ccr/stats/types.ts.ts#L40-L42" + "specLocation": "ccr/stats/types.ts.ts#L41-L43" }, { "kind": "request", @@ -102528,7 +102528,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L27-L30" + "specLocation": "cluster/_types/ComponentTemplate.ts#L30-L33" }, { "kind": "interface", @@ -102573,7 +102573,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L32-L37" + "specLocation": "cluster/_types/ComponentTemplate.ts#L35-L40" }, { "kind": "interface", @@ -102682,7 +102682,7 @@ } } ], - "specLocation": "cluster/_types/ComponentTemplate.ts#L39-L51" + "specLocation": "cluster/_types/ComponentTemplate.ts#L42-L54" }, { "kind": "interface", @@ -105909,7 +105909,7 @@ }, "path": [], "query": [], - "specLocation": "cluster/remote_info/ClusterRemoteInfoRequest.ts#L22-L30" + "specLocation": "cluster/remote_info/ClusterRemoteInfoRequest.ts#L23-L31" }, { "kind": "response", @@ -114591,7 +114591,7 @@ } } ], - "specLocation": "eql/_types/EqlSearchResponseBase.ts#L24-L49" + "specLocation": "eql/_types/EqlSearchResponseBase.ts#L25-L50" }, { "kind": "interface", @@ -116286,7 +116286,7 @@ } } ], - "specLocation": "fleet/msearch/MultiSearchRequest.ts#L31-L114" + "specLocation": "fleet/msearch/MultiSearchRequest.ts#L32-L115" }, { "kind": "response", @@ -122974,7 +122974,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L28-L67" + "specLocation": "indices/_types/IndexTemplate.ts#L31-L70" }, { "kind": "interface", @@ -123010,7 +123010,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L69-L80" + "specLocation": "indices/_types/IndexTemplate.ts#L72-L83" }, { "kind": "interface", @@ -123087,7 +123087,7 @@ } } ], - "specLocation": "indices/_types/IndexTemplate.ts#L82-L104" + "specLocation": "indices/_types/IndexTemplate.ts#L85-L107" }, { "kind": "interface", @@ -131439,7 +131439,7 @@ } } ], - "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L41-L149" + "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L42-L150" }, { "kind": "response", @@ -134462,7 +134462,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L25-L27" + "specLocation": "indices/shard_stores/types.ts#L26-L28" }, { "kind": "request", @@ -134673,7 +134673,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L29-L36" + "specLocation": "indices/shard_stores/types.ts#L30-L37" }, { "kind": "enum", @@ -134692,7 +134692,7 @@ "name": "ShardStoreAllocation", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L47-L51" + "specLocation": "indices/shard_stores/types.ts#L48-L52" }, { "kind": "interface", @@ -134724,7 +134724,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L53-L56" + "specLocation": "indices/shard_stores/types.ts#L54-L57" }, { "kind": "interface", @@ -134814,7 +134814,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L38-L45" + "specLocation": "indices/shard_stores/types.ts#L39-L46" }, { "kind": "enum", @@ -134840,7 +134840,7 @@ "name": "ShardStoreStatus", "namespace": "indices.shard_stores" }, - "specLocation": "indices/shard_stores/types.ts#L62-L71" + "specLocation": "indices/shard_stores/types.ts#L63-L72" }, { "kind": "interface", @@ -134864,7 +134864,7 @@ } } ], - "specLocation": "indices/shard_stores/types.ts#L58-L60" + "specLocation": "indices/shard_stores/types.ts#L59-L61" }, { "kind": "request", @@ -138913,7 +138913,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L297-L312" + "specLocation": "ingest/_types/Processors.ts#L284-L299" }, { "kind": "interface", @@ -139033,7 +139033,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L314-L355" + "specLocation": "ingest/_types/Processors.ts#L301-L342" }, { "kind": "interface", @@ -139087,7 +139087,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L481-L497" + "specLocation": "ingest/_types/Processors.ts#L475-L491" }, { "kind": "interface", @@ -139164,7 +139164,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L499-L522" + "specLocation": "ingest/_types/Processors.ts#L493-L516" }, { "kind": "interface", @@ -139230,7 +139230,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L534-L554" + "specLocation": "ingest/_types/Processors.ts#L528-L548" }, { "kind": "enum", @@ -139261,7 +139261,7 @@ "name": "ConvertType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L524-L532" + "specLocation": "ingest/_types/Processors.ts#L518-L526" }, { "kind": "interface", @@ -139359,7 +139359,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L556-L589" + "specLocation": "ingest/_types/Processors.ts#L550-L583" }, { "kind": "interface", @@ -139499,7 +139499,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L591-L629" + "specLocation": "ingest/_types/Processors.ts#L585-L623" }, { "kind": "interface", @@ -139581,7 +139581,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L631-L658" + "specLocation": "ingest/_types/Processors.ts#L625-L652" }, { "kind": "interface", @@ -139647,7 +139647,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L660-L679" + "specLocation": "ingest/_types/Processors.ts#L654-L673" }, { "kind": "interface", @@ -139700,7 +139700,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L681-L699" + "specLocation": "ingest/_types/Processors.ts#L675-L693" }, { "kind": "interface", @@ -139715,7 +139715,7 @@ "namespace": "ingest._types" }, "properties": [], - "specLocation": "ingest/_types/Processors.ts#L701-L701" + "specLocation": "ingest/_types/Processors.ts#L695-L695" }, { "kind": "interface", @@ -139819,7 +139819,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L703-L742" + "specLocation": "ingest/_types/Processors.ts#L697-L736" }, { "kind": "interface", @@ -139847,7 +139847,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L744-L750" + "specLocation": "ingest/_types/Processors.ts#L738-L744" }, { "kind": "interface", @@ -139900,7 +139900,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L752-L766" + "specLocation": "ingest/_types/Processors.ts#L746-L760" }, { "kind": "interface", @@ -140027,7 +140027,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L357-L398" + "specLocation": "ingest/_types/Processors.ts#L344-L385" }, { "kind": "enum", @@ -140043,7 +140043,7 @@ "name": "GeoGridTargetFormat", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L406-L409" + "specLocation": "ingest/_types/Processors.ts#L393-L396" }, { "kind": "enum", @@ -140062,7 +140062,7 @@ "name": "GeoGridTileType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L400-L404" + "specLocation": "ingest/_types/Processors.ts#L387-L391" }, { "kind": "interface", @@ -140169,7 +140169,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L411-L445" + "specLocation": "ingest/_types/Processors.ts#L398-L432" }, { "kind": "interface", @@ -140261,7 +140261,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L768-L793" + "specLocation": "ingest/_types/Processors.ts#L762-L787" }, { "kind": "interface", @@ -140339,7 +140339,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L795-L819" + "specLocation": "ingest/_types/Processors.ts#L789-L813" }, { "kind": "interface", @@ -140393,7 +140393,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L821-L837" + "specLocation": "ingest/_types/Processors.ts#L815-L831" }, { "kind": "interface", @@ -140427,7 +140427,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L860-L872", + "specLocation": "ingest/_types/Processors.ts#L854-L866", "variants": { "kind": "container" } @@ -140504,7 +140504,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L887-L913" + "specLocation": "ingest/_types/Processors.ts#L881-L907" }, { "kind": "interface", @@ -140540,7 +140540,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L874-L885" + "specLocation": "ingest/_types/Processors.ts#L868-L879" }, { "kind": "interface", @@ -140612,7 +140612,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L839-L858" + "specLocation": "ingest/_types/Processors.ts#L833-L852" }, { "kind": "interface", @@ -140665,7 +140665,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L915-L930" + "specLocation": "ingest/_types/Processors.ts#L909-L924" }, { "kind": "interface", @@ -140744,7 +140744,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L932-L961" + "specLocation": "ingest/_types/Processors.ts#L926-L955" }, { "kind": "enum", @@ -140762,7 +140762,7 @@ "name": "JsonProcessorConflictStrategy", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L963-L968" + "specLocation": "ingest/_types/Processors.ts#L957-L962" }, { "kind": "interface", @@ -140919,7 +140919,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L970-L1022" + "specLocation": "ingest/_types/Processors.ts#L964-L1016" }, { "kind": "interface", @@ -140973,7 +140973,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1024-L1040" + "specLocation": "ingest/_types/Processors.ts#L1018-L1034" }, { "kind": "interface", @@ -141173,7 +141173,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1042-L1053" + "specLocation": "ingest/_types/Processors.ts#L1036-L1047" }, { "kind": "interface", @@ -141843,7 +141843,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1055-L1069" + "specLocation": "ingest/_types/Processors.ts#L1049-L1063" }, { "kind": "interface", @@ -141896,7 +141896,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1071-L1087" + "specLocation": "ingest/_types/Processors.ts#L1065-L1081" }, { "kind": "interface", @@ -141978,7 +141978,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1089-L1117" + "specLocation": "ingest/_types/Processors.ts#L1083-L1111" }, { "kind": "interface", @@ -142050,7 +142050,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1119-L1139" + "specLocation": "ingest/_types/Processors.ts#L1113-L1133" }, { "kind": "interface", @@ -142136,7 +142136,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1141-L1175" + "specLocation": "ingest/_types/Processors.ts#L1135-L1169" }, { "kind": "interface", @@ -142179,7 +142179,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1177-L1186" + "specLocation": "ingest/_types/Processors.ts#L1171-L1180" }, { "kind": "enum", @@ -142195,7 +142195,7 @@ "name": "ShapeType", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L1188-L1191" + "specLocation": "ingest/_types/Processors.ts#L1182-L1185" }, { "kind": "interface", @@ -142248,7 +142248,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1193-L1209" + "specLocation": "ingest/_types/Processors.ts#L1187-L1203" }, { "kind": "interface", @@ -142327,7 +142327,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1211-L1236" + "specLocation": "ingest/_types/Processors.ts#L1205-L1230" }, { "kind": "interface", @@ -142381,7 +142381,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1238-L1254" + "specLocation": "ingest/_types/Processors.ts#L1232-L1248" }, { "kind": "interface", @@ -142435,7 +142435,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1256-L1272" + "specLocation": "ingest/_types/Processors.ts#L1250-L1266" }, { "kind": "interface", @@ -142515,7 +142515,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1292-L1318" + "specLocation": "ingest/_types/Processors.ts#L1286-L1312" }, { "kind": "interface", @@ -142569,7 +142569,7 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L1274-L1290" + "specLocation": "ingest/_types/Processors.ts#L1268-L1284" }, { "kind": "interface", @@ -142609,20 +142609,6 @@ } } }, - { - "name": "options", - "required": false, - "type": { - "kind": "array_of", - "value": { - "kind": "instance_of", - "type": { - "name": "UserAgentProperty", - "namespace": "ingest._types" - } - } - } - }, { "description": "The name of the file in the `config/ingest-user-agent` directory containing the regular expressions for parsing the user agent string. Both the directory and the file have to be created before starting Elasticsearch. If not specified, ingest-user-agent will use the `regexes.yaml` from uap-core it ships with.", "name": "regex_file", @@ -142669,8 +142655,8 @@ "value": { "kind": "instance_of", "type": { - "name": "string", - "namespace": "_builtins" + "name": "UserAgentProperty", + "namespace": "ingest._types" } } } @@ -142696,47 +142682,32 @@ } } ], - "specLocation": "ingest/_types/Processors.ts#L447-L479" + "specLocation": "ingest/_types/Processors.ts#L434-L465" }, { "kind": "enum", "members": [ { - "name": "NAME" - }, - { - "name": "MAJOR" - }, - { - "name": "MINOR" - }, - { - "name": "PATCH" - }, - { - "name": "OS" - }, - { - "name": "OS_NAME" + "name": "name" }, { - "name": "OS_MAJOR" + "name": "os" }, { - "name": "OS_MINOR" + "name": "device" }, { - "name": "DEVICE" + "name": "original" }, { - "name": "BUILD" + "name": "version" } ], "name": { "name": "UserAgentProperty", "namespace": "ingest._types" }, - "specLocation": "ingest/_types/Processors.ts#L284-L295" + "specLocation": "ingest/_types/Processors.ts#L467-L473" }, { "kind": "request", @@ -144073,7 +144044,7 @@ } } ], - "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L25-L57" + "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L26-L58" }, { "kind": "response", @@ -147224,7 +147195,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L79-L127" + "specLocation": "ml/_types/Bucket.ts#L80-L128" }, { "kind": "interface", @@ -147395,7 +147366,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L30-L77" + "specLocation": "ml/_types/Bucket.ts#L31-L78" }, { "kind": "interface", @@ -149153,7 +149124,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L133-L212" + "specLocation": "ml/_types/DataframeAnalytics.ts#L134-L213" }, { "kind": "interface", @@ -149194,7 +149165,7 @@ } ], "shortcutProperty": "includes", - "specLocation": "ml/_types/DataframeAnalytics.ts#L237-L243" + "specLocation": "ml/_types/DataframeAnalytics.ts#L238-L244" }, { "kind": "interface", @@ -149234,7 +149205,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L226-L235" + "specLocation": "ml/_types/DataframeAnalytics.ts#L227-L236" }, { "kind": "interface", @@ -149286,7 +149257,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L83-L100", + "specLocation": "ml/_types/DataframeAnalytics.ts#L84-L101", "variants": { "kind": "container" } @@ -149359,7 +149330,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L245-L257", + "specLocation": "ml/_types/DataframeAnalytics.ts#L246-L258", "variants": { "kind": "container" } @@ -149418,7 +149389,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L259-L266" + "specLocation": "ml/_types/DataframeAnalytics.ts#L260-L267" }, { "kind": "interface", @@ -149443,7 +149414,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L268-L271" + "specLocation": "ml/_types/DataframeAnalytics.ts#L269-L272" }, { "kind": "interface", @@ -149527,7 +149498,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L273-L285" + "specLocation": "ml/_types/DataframeAnalytics.ts#L274-L286" }, { "kind": "interface", @@ -149561,7 +149532,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L287-L292" + "specLocation": "ml/_types/DataframeAnalytics.ts#L288-L293" }, { "kind": "interface", @@ -149626,7 +149597,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L294-L303" + "specLocation": "ml/_types/DataframeAnalytics.ts#L295-L304" }, { "kind": "interface", @@ -149712,7 +149683,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L102-L131" + "specLocation": "ml/_types/DataframeAnalytics.ts#L103-L132" }, { "kind": "interface", @@ -149753,7 +149724,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L214-L224" + "specLocation": "ml/_types/DataframeAnalytics.ts#L215-L225" }, { "kind": "interface", @@ -149865,7 +149836,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L323-L343" + "specLocation": "ml/_types/DataframeAnalytics.ts#L324-L344" }, { "kind": "interface", @@ -149948,7 +149919,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L76-L81" + "specLocation": "ml/_types/DataframeAnalytics.ts#L77-L82" }, { "kind": "interface", @@ -150033,7 +150004,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L54-L67" + "specLocation": "ml/_types/DataframeAnalytics.ts#L55-L68" }, { "kind": "interface", @@ -150067,7 +150038,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L69-L74" + "specLocation": "ml/_types/DataframeAnalytics.ts#L70-L75" }, { "kind": "interface", @@ -150127,7 +150098,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L38-L52" + "specLocation": "ml/_types/DataframeAnalytics.ts#L39-L53" }, { "kind": "interface", @@ -150173,7 +150144,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L372-L380", + "specLocation": "ml/_types/DataframeAnalytics.ts#L373-L381", "variants": { "kind": "container" } @@ -150222,7 +150193,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L363-L370" + "specLocation": "ml/_types/DataframeAnalytics.ts#L364-L371" }, { "kind": "interface", @@ -150301,7 +150272,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L382-L401" + "specLocation": "ml/_types/DataframeAnalytics.ts#L383-L402" }, { "kind": "interface", @@ -150368,7 +150339,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L352-L361" + "specLocation": "ml/_types/DataframeAnalytics.ts#L353-L362" }, { "kind": "interface", @@ -150423,7 +150394,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L403-L416" + "specLocation": "ml/_types/DataframeAnalytics.ts#L404-L417" }, { "kind": "interface", @@ -150457,7 +150428,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L345-L350" + "specLocation": "ml/_types/DataframeAnalytics.ts#L346-L351" }, { "kind": "interface", @@ -150609,7 +150580,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L305-L321" + "specLocation": "ml/_types/DataframeAnalytics.ts#L306-L322" }, { "kind": "interface", @@ -151191,7 +151162,7 @@ "name": "DeploymentAllocationState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L288-L301" + "specLocation": "ml/_types/TrainedModel.ts#L289-L302" }, { "kind": "enum", @@ -151213,7 +151184,7 @@ "name": "DeploymentAssignmentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L303-L308" + "specLocation": "ml/_types/TrainedModel.ts#L304-L309" }, { "kind": "enum", @@ -151235,7 +151206,7 @@ "name": "DeploymentState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L273-L286" + "specLocation": "ml/_types/TrainedModel.ts#L274-L287" }, { "kind": "interface", @@ -152000,7 +151971,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L216-L230" + "specLocation": "ml/_types/TrainedModel.ts#L217-L231" }, { "kind": "interface", @@ -152178,7 +152149,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L418-L524" + "specLocation": "ml/_types/DataframeAnalytics.ts#L419-L525" }, { "kind": "enum", @@ -152860,7 +152831,7 @@ } } ], - "specLocation": "ml/_types/Influencer.ts#L24-L76" + "specLocation": "ml/_types/Influencer.ts#L31-L83" }, { "kind": "interface", @@ -154761,7 +154732,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L526-L560" + "specLocation": "ml/_types/DataframeAnalytics.ts#L527-L561" }, { "kind": "interface", @@ -154876,7 +154847,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L129-L144" + "specLocation": "ml/_types/Bucket.ts#L130-L145" }, { "kind": "interface", @@ -154908,7 +154879,7 @@ } } ], - "specLocation": "ml/_types/Bucket.ts#L145-L148" + "specLocation": "ml/_types/Bucket.ts#L146-L149" }, { "kind": "interface", @@ -155284,7 +155255,7 @@ "name": "RoutingState", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L350-L371" + "specLocation": "ml/_types/TrainedModel.ts#L351-L372" }, { "kind": "enum", @@ -155769,7 +155740,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L562-L567" + "specLocation": "ml/_types/DataframeAnalytics.ts#L563-L568" }, { "kind": "interface", @@ -155945,7 +155916,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L232-L239" + "specLocation": "ml/_types/TrainedModel.ts#L233-L240" }, { "kind": "interface", @@ -155982,7 +155953,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L241-L246" + "specLocation": "ml/_types/TrainedModel.ts#L242-L247" }, { "kind": "interface", @@ -156028,7 +155999,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L248-L255" + "specLocation": "ml/_types/TrainedModel.ts#L249-L256" }, { "kind": "interface", @@ -156107,7 +156078,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L402-L417" + "specLocation": "ml/_types/TrainedModel.ts#L403-L418" }, { "kind": "interface", @@ -156165,7 +156136,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L373-L391" + "specLocation": "ml/_types/TrainedModel.ts#L374-L392" }, { "kind": "interface", @@ -156276,7 +156247,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L315-L348" + "specLocation": "ml/_types/TrainedModel.ts#L316-L349" }, { "kind": "interface", @@ -156524,7 +156495,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L164-L199" + "specLocation": "ml/_types/TrainedModel.ts#L165-L200" }, { "kind": "interface", @@ -156549,7 +156520,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L201-L204" + "specLocation": "ml/_types/TrainedModel.ts#L202-L205" }, { "kind": "interface", @@ -156626,7 +156597,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L206-L214" + "specLocation": "ml/_types/TrainedModel.ts#L207-L215" }, { "kind": "interface", @@ -156672,7 +156643,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L393-L400" + "specLocation": "ml/_types/TrainedModel.ts#L394-L401" }, { "kind": "interface", @@ -156847,7 +156818,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L132-L162" + "specLocation": "ml/_types/TrainedModel.ts#L133-L163" }, { "kind": "interface", @@ -157048,7 +157019,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L61-L101" + "specLocation": "ml/_types/TrainedModel.ts#L62-L102" }, { "kind": "interface", @@ -157272,7 +157243,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L103-L123" + "specLocation": "ml/_types/TrainedModel.ts#L104-L124" }, { "kind": "interface", @@ -157293,7 +157264,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L419-L421" + "specLocation": "ml/_types/TrainedModel.ts#L420-L422" }, { "kind": "interface", @@ -157314,7 +157285,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L423-L425" + "specLocation": "ml/_types/TrainedModel.ts#L424-L426" }, { "kind": "interface", @@ -157348,7 +157319,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L427-L436" + "specLocation": "ml/_types/TrainedModel.ts#L428-L437" }, { "kind": "interface", @@ -157382,7 +157353,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L125-L130" + "specLocation": "ml/_types/TrainedModel.ts#L126-L131" }, { "kind": "interface", @@ -157473,7 +157444,7 @@ } } ], - "specLocation": "ml/_types/TrainedModel.ts#L41-L59" + "specLocation": "ml/_types/TrainedModel.ts#L42-L60" }, { "kind": "enum", @@ -157495,7 +157466,7 @@ "name": "TrainedModelType", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L257-L271" + "specLocation": "ml/_types/TrainedModel.ts#L258-L272" }, { "kind": "enum", @@ -157511,7 +157482,7 @@ "name": "TrainingPriority", "namespace": "ml._types" }, - "specLocation": "ml/_types/TrainedModel.ts#L310-L313" + "specLocation": "ml/_types/TrainedModel.ts#L311-L314" }, { "kind": "interface", @@ -157597,7 +157568,7 @@ } } ], - "specLocation": "ml/_types/DataframeAnalytics.ts#L569-L574" + "specLocation": "ml/_types/DataframeAnalytics.ts#L570-L575" }, { "kind": "interface", @@ -157806,7 +157777,7 @@ } ], "query": [], - "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L23-L41" + "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L25-L43" }, { "kind": "response", @@ -161268,7 +161239,7 @@ "name": "Response", "namespace": "ml.get_data_frame_analytics_stats" }, - "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L23-L29" + "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L24-L30" }, { "kind": "request", @@ -166873,7 +166844,7 @@ } } ], - "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L127" + "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L29-L125" }, { "kind": "response", @@ -180650,7 +180621,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L24-L26" + "specLocation": "rollup/get_rollup_caps/types.ts#L25-L27" }, { "kind": "interface", @@ -180718,7 +180689,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L28-L33" + "specLocation": "rollup/get_rollup_caps/types.ts#L29-L34" }, { "kind": "interface", @@ -180761,7 +180732,7 @@ } } ], - "specLocation": "rollup/get_rollup_caps/types.ts#L35-L39" + "specLocation": "rollup/get_rollup_caps/types.ts#L36-L40" }, { "kind": "interface", @@ -182137,7 +182108,7 @@ } } ], - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L27-L32" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33" }, { "kind": "request", @@ -182191,7 +182162,7 @@ "name": "Response", "namespace": "search_application.put_behavioral_analytics" }, - "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L23-L25" + "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L24-L26" }, { "kind": "request", @@ -182301,7 +182272,7 @@ "name": "Response", "namespace": "search_application.search" }, - "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L22-L24" + "specLocation": "search_application/search/SearchApplicationsSearchResponse.ts#L23-L25" }, { "kind": "enum", @@ -183132,7 +183103,7 @@ } } ], - "specLocation": "security/_types/ApiKey.ts#L26-L88" + "specLocation": "security/_types/ApiKey.ts#L27-L89" }, { "kind": "interface", @@ -183613,7 +183584,7 @@ } } ], - "specLocation": "security/_types/RoleMappingRule.ts#L35-L43", + "specLocation": "security/_types/RoleMappingRule.ts#L36-L44", "variants": { "kind": "container", "nonExhaustive": true @@ -184105,7 +184076,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L31-L64" + "specLocation": "security/_types/RoleDescriptor.ts#L28-L61" }, { "kind": "interface", @@ -184272,7 +184243,7 @@ } } ], - "specLocation": "security/_types/RoleDescriptor.ts#L66-L98" + "specLocation": "security/_types/RoleDescriptor.ts#L63-L95" }, { "kind": "interface", @@ -184403,7 +184374,7 @@ } } ], - "specLocation": "security/_types/RoleMappingRule.ts#L22-L33", + "specLocation": "security/_types/RoleMappingRule.ts#L23-L34", "variants": { "kind": "container" } @@ -184871,7 +184842,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L41-L47" + "specLocation": "security/_types/UserProfile.ts#L42-L48" }, { "kind": "interface", @@ -184903,7 +184874,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L27-L30" + "specLocation": "security/_types/UserProfile.ts#L28-L31" }, { "kind": "type_alias", @@ -184911,7 +184882,7 @@ "name": "UserProfileId", "namespace": "security._types" }, - "specLocation": "security/_types/UserProfile.ts#L25-L25", + "specLocation": "security/_types/UserProfile.ts#L26-L26", "type": { "kind": "instance_of", "type": { @@ -185021,7 +184992,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L32-L39" + "specLocation": "security/_types/UserProfile.ts#L33-L40" }, { "kind": "interface", @@ -185059,7 +185030,7 @@ } } ], - "specLocation": "security/_types/UserProfile.ts#L49-L52" + "specLocation": "security/_types/UserProfile.ts#L50-L53" }, { "kind": "request", @@ -185482,7 +185453,7 @@ "name": "Response", "namespace": "security.bulk_delete_role" }, - "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L22-L37" + "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L25-L40" }, { "kind": "request", @@ -186467,7 +186438,7 @@ } } ], - "specLocation": "security/create_service_token/CreateServiceTokenRequest.ts#L23-L38" + "specLocation": "security/create_service_token/CreateServiceTokenRequest.ts#L24-L39" }, { "kind": "response", @@ -188900,7 +188871,7 @@ "name": "Response", "namespace": "security.get_user_privileges" }, - "specLocation": "security/get_user_privileges/SecurityGetUserPrivilegesResponse.ts#L26-L34" + "specLocation": "security/get_user_privileges/SecurityGetUserPrivilegesResponse.ts#L27-L35" }, { "kind": "interface", @@ -190900,7 +190871,7 @@ "name": "ApiKeyAggregate", "namespace": "security.query_api_keys" }, - "specLocation": "security/query_api_keys/types.ts#L122-L139", + "specLocation": "security/query_api_keys/types.ts#L123-L140", "type": { "kind": "union_of", "items": [ @@ -191170,7 +191141,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L63-L120", + "specLocation": "security/query_api_keys/types.ts#L64-L121", "variants": { "kind": "container", "nonExhaustive": true @@ -191249,7 +191220,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L207-L227" + "specLocation": "security/query_api_keys/types.ts#L208-L228" }, { "kind": "interface", @@ -191468,7 +191439,7 @@ } } ], - "specLocation": "security/query_api_keys/types.ts#L141-L205", + "specLocation": "security/query_api_keys/types.ts#L142-L206", "variants": { "kind": "container", "nonExhaustive": true @@ -199160,7 +199131,7 @@ } ], "query": [], - "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L35" + "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L24-L36" }, { "kind": "response", @@ -199778,7 +199749,7 @@ "name": "Response", "namespace": "sql.translate" }, - "specLocation": "sql/translate/TranslateSqlResponse.ts#L27-L37" + "specLocation": "sql/translate/TranslateSqlResponse.ts#L28-L38" }, { "kind": "interface", @@ -205115,7 +205086,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L109-L112" + "specLocation": "watcher/_types/Action.ts#L115-L118" }, { "kind": "enum", @@ -205134,7 +205105,7 @@ "name": "AcknowledgementOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L103-L107" + "specLocation": "watcher/_types/Action.ts#L109-L113" }, { "kind": "interface", @@ -205313,7 +205284,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L35-L54" + "specLocation": "watcher/_types/Action.ts#L41-L60" }, { "kind": "enum", @@ -205343,7 +205314,7 @@ "name": "ActionExecutionMode", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L67-L88" + "specLocation": "watcher/_types/Action.ts#L73-L94" }, { "kind": "interface", @@ -205397,7 +205368,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L125-L130" + "specLocation": "watcher/_types/Action.ts#L131-L136" }, { "kind": "enum", @@ -205419,7 +205390,7 @@ "name": "ActionStatusOptions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L96-L101" + "specLocation": "watcher/_types/Action.ts#L102-L107" }, { "kind": "enum", @@ -205447,7 +205418,7 @@ "name": "ActionType", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L58-L65" + "specLocation": "watcher/_types/Action.ts#L64-L71" }, { "kind": "type_alias", @@ -205455,7 +205426,7 @@ "name": "Actions", "namespace": "watcher._types" }, - "specLocation": "watcher/_types/Action.ts#L56-L56", + "specLocation": "watcher/_types/Action.ts#L62-L62", "type": { "kind": "dictionary_of", "key": { @@ -206648,7 +206619,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L114-L118" + "specLocation": "watcher/_types/Action.ts#L120-L124" }, { "kind": "enum", @@ -208565,7 +208536,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L90-L94" + "specLocation": "watcher/_types/Action.ts#L96-L100" }, { "kind": "interface", @@ -209005,7 +208976,7 @@ } } ], - "specLocation": "watcher/_types/Action.ts#L120-L123" + "specLocation": "watcher/_types/Action.ts#L126-L129" }, { "kind": "interface", @@ -211692,7 +211663,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L328-L330" + "specLocation": "xpack/usage/types.ts#L330-L332" }, { "kind": "interface", @@ -211801,7 +211772,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L59-L69" + "specLocation": "xpack/usage/types.ts#L61-L71" }, { "kind": "interface", @@ -211828,7 +211799,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L46-L48" + "specLocation": "xpack/usage/types.ts#L48-L50" }, { "kind": "interface", @@ -211858,7 +211829,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L71-L73" + "specLocation": "xpack/usage/types.ts#L73-L75" }, { "kind": "interface", @@ -211890,7 +211861,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L28-L31" + "specLocation": "xpack/usage/types.ts#L30-L33" }, { "kind": "interface", @@ -211928,7 +211899,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L332-L335" + "specLocation": "xpack/usage/types.ts#L334-L337" }, { "kind": "interface", @@ -211960,7 +211931,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L33-L36" + "specLocation": "xpack/usage/types.ts#L35-L38" }, { "kind": "interface", @@ -211998,7 +211969,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L79-L82" + "specLocation": "xpack/usage/types.ts#L81-L84" }, { "kind": "interface", @@ -212118,7 +212089,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L84-L95" + "specLocation": "xpack/usage/types.ts#L86-L97" }, { "kind": "interface", @@ -212195,7 +212166,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L337-L347" + "specLocation": "xpack/usage/types.ts#L339-L349" }, { "kind": "interface", @@ -212216,7 +212187,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L75-L77" + "specLocation": "xpack/usage/types.ts#L77-L79" }, { "kind": "interface", @@ -212265,7 +212236,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L349-L352" + "specLocation": "xpack/usage/types.ts#L351-L354" }, { "kind": "interface", @@ -212352,7 +212323,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L97-L105" + "specLocation": "xpack/usage/types.ts#L99-L107" }, { "kind": "interface", @@ -212417,7 +212388,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L107-L113" + "specLocation": "xpack/usage/types.ts#L109-L115" }, { "kind": "interface", @@ -212482,7 +212453,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L115-L121" + "specLocation": "xpack/usage/types.ts#L117-L123" }, { "kind": "interface", @@ -212514,7 +212485,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L123-L126" + "specLocation": "xpack/usage/types.ts#L125-L128" }, { "kind": "interface", @@ -212590,7 +212561,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L128-L135" + "specLocation": "xpack/usage/types.ts#L130-L137" }, { "kind": "interface", @@ -212611,7 +212582,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L38-L40" + "specLocation": "xpack/usage/types.ts#L40-L42" }, { "kind": "interface", @@ -212638,7 +212609,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L354-L356" + "specLocation": "xpack/usage/types.ts#L356-L358" }, { "kind": "interface", @@ -212665,7 +212636,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L358-L360" + "specLocation": "xpack/usage/types.ts#L360-L362" }, { "kind": "interface", @@ -212692,7 +212663,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L151-L153" + "specLocation": "xpack/usage/types.ts#L153-L155" }, { "kind": "interface", @@ -212727,7 +212698,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L160-L163" + "specLocation": "xpack/usage/types.ts#L162-L165" }, { "kind": "interface", @@ -212759,7 +212730,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L155-L158" + "specLocation": "xpack/usage/types.ts#L157-L160" }, { "kind": "interface", @@ -212780,7 +212751,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L42-L44" + "specLocation": "xpack/usage/types.ts#L44-L46" }, { "kind": "interface", @@ -212812,7 +212783,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L165-L168" + "specLocation": "xpack/usage/types.ts#L167-L170" }, { "kind": "interface", @@ -212888,7 +212859,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L362-L368" + "specLocation": "xpack/usage/types.ts#L364-L370" }, { "kind": "interface", @@ -212982,7 +212953,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L370-L377" + "specLocation": "xpack/usage/types.ts#L372-L379" }, { "kind": "interface", @@ -213003,7 +212974,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L253-L255" + "specLocation": "xpack/usage/types.ts#L255-L257" }, { "kind": "interface", @@ -213057,7 +213028,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L175-L180" + "specLocation": "xpack/usage/types.ts#L177-L182" }, { "kind": "interface", @@ -213100,7 +213071,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L182-L186" + "specLocation": "xpack/usage/types.ts#L184-L188" }, { "kind": "interface", @@ -213121,7 +213092,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L192-L194" + "specLocation": "xpack/usage/types.ts#L194-L196" }, { "kind": "interface", @@ -213142,7 +213113,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L188-L190" + "specLocation": "xpack/usage/types.ts#L190-L192" }, { "kind": "interface", @@ -213202,7 +213173,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L196-L204" + "specLocation": "xpack/usage/types.ts#L198-L206" }, { "kind": "interface", @@ -213256,7 +213227,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L225-L230" + "specLocation": "xpack/usage/types.ts#L227-L232" }, { "kind": "interface", @@ -213277,7 +213248,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L232-L234" + "specLocation": "xpack/usage/types.ts#L234-L236" }, { "kind": "interface", @@ -213331,7 +213302,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L206-L211" + "specLocation": "xpack/usage/types.ts#L208-L213" }, { "kind": "interface", @@ -213374,7 +213345,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L236-L240" + "specLocation": "xpack/usage/types.ts#L238-L242" }, { "kind": "interface", @@ -213445,7 +213416,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L213-L223" + "specLocation": "xpack/usage/types.ts#L215-L225" }, { "kind": "interface", @@ -213543,7 +213514,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L242-L251" + "specLocation": "xpack/usage/types.ts#L244-L253" }, { "kind": "interface", @@ -213575,7 +213546,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L170-L173" + "specLocation": "xpack/usage/types.ts#L172-L175" }, { "kind": "interface", @@ -213624,7 +213595,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L379-L382" + "specLocation": "xpack/usage/types.ts#L381-L384" }, { "kind": "interface", @@ -213678,7 +213649,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L257-L262" + "specLocation": "xpack/usage/types.ts#L259-L264" }, { "kind": "interface", @@ -213806,7 +213777,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L415-L424" + "specLocation": "xpack/usage/types.ts#L417-L426" }, { "kind": "interface", @@ -213827,7 +213798,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L264-L266" + "specLocation": "xpack/usage/types.ts#L266-L268" }, { "kind": "request", @@ -214234,7 +214205,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L268-L271" + "specLocation": "xpack/usage/types.ts#L270-L273" }, { "kind": "interface", @@ -214264,7 +214235,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L273-L275" + "specLocation": "xpack/usage/types.ts#L275-L277" }, { "kind": "interface", @@ -214431,7 +214402,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L277-L292" + "specLocation": "xpack/usage/types.ts#L279-L294" }, { "kind": "interface", @@ -214480,7 +214451,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L426-L430" + "specLocation": "xpack/usage/types.ts#L428-L432" }, { "kind": "interface", @@ -214650,7 +214621,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L432-L445" + "specLocation": "xpack/usage/types.ts#L434-L447" }, { "kind": "interface", @@ -214693,7 +214664,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L294-L298" + "specLocation": "xpack/usage/types.ts#L296-L300" }, { "kind": "interface", @@ -214714,7 +214685,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L306-L308" + "specLocation": "xpack/usage/types.ts#L308-L310" }, { "kind": "interface", @@ -214757,7 +214728,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L310-L314" + "specLocation": "xpack/usage/types.ts#L312-L316" }, { "kind": "interface", @@ -214800,7 +214771,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L316-L320" + "specLocation": "xpack/usage/types.ts#L318-L322" }, { "kind": "interface", @@ -214843,7 +214814,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L300-L304" + "specLocation": "xpack/usage/types.ts#L302-L306" }, { "kind": "interface", @@ -214881,7 +214852,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L447-L450" + "specLocation": "xpack/usage/types.ts#L449-L452" }, { "kind": "interface", @@ -214941,7 +214912,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L384-L387" + "specLocation": "xpack/usage/types.ts#L386-L389" }, { "kind": "interface", @@ -214973,7 +214944,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L389-L392" + "specLocation": "xpack/usage/types.ts#L391-L394" }, { "kind": "interface", @@ -215022,7 +214993,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L452-L456" + "specLocation": "xpack/usage/types.ts#L454-L458" }, { "kind": "interface", @@ -215071,7 +215042,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L458-L462" + "specLocation": "xpack/usage/types.ts#L460-L464" }, { "kind": "interface", @@ -215112,7 +215083,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L410-L413" + "specLocation": "xpack/usage/types.ts#L412-L415" }, { "kind": "interface", @@ -215144,7 +215115,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L394-L396" + "specLocation": "xpack/usage/types.ts#L396-L398" }, { "kind": "interface", @@ -215231,7 +215202,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L398-L403" + "specLocation": "xpack/usage/types.ts#L400-L405" }, { "kind": "interface", @@ -215263,7 +215234,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L405-L408" + "specLocation": "xpack/usage/types.ts#L407-L410" }, { "kind": "interface", @@ -215301,7 +215272,7 @@ } } ], - "specLocation": "xpack/usage/types.ts#L464-L467" + "specLocation": "xpack/usage/types.ts#L466-L469" }, { "kind": "interface", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index c61c0b89db..f4454fb168 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -12985,14 +12985,13 @@ export interface IngestUrlDecodeProcessor extends IngestProcessorBase { export interface IngestUserAgentProcessor extends IngestProcessorBase { field: Field ignore_missing?: boolean - options?: IngestUserAgentProperty[] regex_file?: string target_field?: Field - properties?: string[] + properties?: IngestUserAgentProperty[] extract_device_type?: boolean } -export type IngestUserAgentProperty = 'NAME' | 'MAJOR' | 'MINOR' | 'PATCH' | 'OS' | 'OS_NAME' | 'OS_MAJOR' | 'OS_MINOR' | 'DEVICE' | 'BUILD' +export type IngestUserAgentProperty = 'name' | 'os' | 'device' | 'original' | 'version' export interface IngestDeleteGeoipDatabaseRequest extends RequestBase { id: Ids diff --git a/specification/ingest/_types/Processors.ts b/specification/ingest/_types/Processors.ts index 24366640cd..053a5deb31 100644 --- a/specification/ingest/_types/Processors.ts +++ b/specification/ingest/_types/Processors.ts @@ -281,19 +281,6 @@ export class ProcessorBase { tag?: string } -export enum UserAgentProperty { - NAME, - MAJOR, - MINOR, - PATCH, - OS, - OS_NAME, - OS_MAJOR, - OS_MINOR, - DEVICE, - BUILD -} - export class AppendProcessor extends ProcessorBase { /** * The field to be appended to. @@ -454,7 +441,6 @@ export class UserAgentProcessor extends ProcessorBase { * @server_default false */ ignore_missing?: boolean - options?: UserAgentProperty[] /** * The name of the file in the `config/ingest-user-agent` directory containing the regular expressions for parsing the user agent string. Both the directory and the file have to be created before starting Elasticsearch. If not specified, ingest-user-agent will use the `regexes.yaml` from uap-core it ships with. */ @@ -468,7 +454,7 @@ export class UserAgentProcessor extends ProcessorBase { * Controls what properties are added to `target_field`. * @server_default ['name', 'major', 'minor', 'patch', 'build', 'os', 'os_name', 'os_major', 'os_minor', 'device'] */ - properties?: string[] + properties?: UserAgentProperty[] /** * Extracts device type from the user agent string on a best-effort basis. * @server_default false @@ -478,6 +464,14 @@ export class UserAgentProcessor extends ProcessorBase { extract_device_type?: boolean } +export enum UserAgentProperty { + name, + os, + device, + original, + version +} + export class BytesProcessor extends ProcessorBase { /** * The field to convert.