From fb20b89668ccb70b45a66afed7efb01d78dea872 Mon Sep 17 00:00:00 2001 From: Florian Bernd Date: Wed, 17 Jul 2024 14:43:59 +0200 Subject: [PATCH] Make sure that the type discriminator is the first property --- compiler/package-lock.json | 23 +- compiler/package.json | 4 +- compiler/src/compiler.ts | 16 +- output/schema/schema.json | 5856 ++++++++++++++++++------------------ 4 files changed, 2954 insertions(+), 2945 deletions(-) diff --git a/compiler/package-lock.json b/compiler/package-lock.json index 80b1a9d123..b6ea2b442f 100644 --- a/compiler/package-lock.json +++ b/compiler/package-lock.json @@ -13,7 +13,7 @@ "compiler-wasm-lib": "file:../compiler-rs/compiler-wasm-lib/pkg", "fastest-levenshtein": "^1.0.12", "ora": "^5.4.1", - "safe-stable-stringify": "^2.3.1", + "safe-stable-stringify": "github:BridgeAR/safe-stable-stringify", "semver": "^7.5.2", "ts-morph": "^13.0.3", "zx": "^4.3.0" @@ -32,10 +32,6 @@ "node": ">=14" } }, - "../compiler-rs/compiler-wasm-lib/pkg": { - "name": "compiler-wasm-lib", - "version": "0.1.0" - }, "node_modules/@babel/code-frame": { "version": "7.12.11", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", @@ -1543,8 +1539,8 @@ "dev": true }, "node_modules/compiler-wasm-lib": { - "resolved": "../compiler-rs/compiler-wasm-lib/pkg", - "link": true + "version": "0.1.0", + "resolved": "file:../compiler-rs/compiler-wasm-lib/pkg" }, "node_modules/concat-map": { "version": "0.0.1", @@ -4493,9 +4489,9 @@ ] }, "node_modules/safe-stable-stringify": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz", - "integrity": "sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==", + "version": "2.5.0", + "resolved": "git+ssh://git@github.com/BridgeAR/safe-stable-stringify.git#0c192c2c1e26676ba5af1f7dbe066b98d76f353f", + "license": "MIT", "engines": { "node": ">=10" } @@ -6462,7 +6458,7 @@ "dev": true }, "compiler-wasm-lib": { - "version": "file:../compiler-rs/compiler-wasm-lib/pkg" + "version": "0.1.0" }, "concat-map": { "version": "0.0.1", @@ -8552,9 +8548,8 @@ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" }, "safe-stable-stringify": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz", - "integrity": "sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg==" + "version": "git+ssh://git@github.com/BridgeAR/safe-stable-stringify.git#0c192c2c1e26676ba5af1f7dbe066b98d76f353f", + "from": "safe-stable-stringify@https://github.com/BridgeAR/safe-stable-stringify" }, "semver": { "version": "7.5.2", diff --git a/compiler/package.json b/compiler/package.json index ab6e6f33f4..6f780b0018 100644 --- a/compiler/package.json +++ b/compiler/package.json @@ -34,10 +34,10 @@ }, "dependencies": { "chalk": "^4.1.2", + "compiler-wasm-lib": "file:../compiler-rs/compiler-wasm-lib/pkg", "fastest-levenshtein": "^1.0.12", "ora": "^5.4.1", - "safe-stable-stringify": "^2.3.1", - "compiler-wasm-lib": "file:../compiler-rs/compiler-wasm-lib/pkg", + "safe-stable-stringify": "^2.5.0", "semver": "^7.5.2", "ts-morph": "^13.0.3", "zx": "^4.3.0" diff --git a/compiler/src/compiler.ts b/compiler/src/compiler.ts index 45c32ee270..6eeed8ef51 100644 --- a/compiler/src/compiler.ts +++ b/compiler/src/compiler.ts @@ -62,10 +62,24 @@ export default class Compiler { this.model = await step(this.model, this.jsonSpec, this.errors) } + const customStringify = stringify.configure( + { + deterministic: (a, b) => { + // Make sure the discriminator property is always emitted first + if (a === 'kind') { + return -1 + } + if (b === 'kind') { + return 1 + } + return a.localeCompare(b) + } + }) + await mkdir(join(this.outputFolder, 'schema'), { recursive: true }) await writeFile( join(this.outputFolder, 'schema', 'schema.json'), - stringify(this.model, null, 2), + customStringify(this.model, null, 2), 'utf8' ) diff --git a/output/schema/schema.json b/output/schema/schema.json index 72127a7f94..b0e303f99c 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -20049,13 +20049,13 @@ ], "types": [ { + "kind": "interface", "inherits": { "type": { "name": "WriteOperation", "namespace": "_global.bulk" } }, - "kind": "interface", "name": { "name": "CreateOperation", "namespace": "_global.bulk" @@ -20064,13 +20064,13 @@ "specLocation": "_global/bulk/types.ts#L130-L130" }, { + "kind": "interface", "inherits": { "type": { "name": "OperationBase", "namespace": "_global.bulk" } }, - "kind": "interface", "name": { "name": "DeleteOperation", "namespace": "_global.bulk" @@ -20079,13 +20079,13 @@ "specLocation": "_global/bulk/types.ts#L134-L134" }, { + "kind": "interface", "inherits": { "type": { "name": "WriteOperation", "namespace": "_global.bulk" } }, - "kind": "interface", "name": { "name": "IndexOperation", "namespace": "_global.bulk" @@ -20267,15 +20267,17 @@ "specLocation": "_global/bulk/types.ts#L83-L88" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "operations", "kind": "value", + "codegenName": "operations", "value": { "kind": "array_of", "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -20285,6 +20287,7 @@ } }, { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -20301,7 +20304,6 @@ } } ], - "kind": "instance_of", "type": { "name": "UpdateAction", "namespace": "_global.bulk" @@ -20314,8 +20316,7 @@ "namespace": "_global.bulk.Request" } } - ], - "kind": "union_of" + ] } } }, @@ -20336,7 +20337,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.bulk" @@ -20472,6 +20472,7 @@ "specLocation": "_global/bulk/BulkRequest.ts#L32-L104" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -20492,6 +20493,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -20499,7 +20501,6 @@ "namespace": "_global.bulk" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -20535,7 +20536,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.bulk" @@ -20554,6 +20554,7 @@ "name": "_id", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -20569,8 +20570,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -20684,8 +20684,10 @@ "name": "get", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -20693,14 +20695,12 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" } } ], - "kind": "instance_of", "type": { "name": "InlineGet", "namespace": "_types" @@ -20711,6 +20711,7 @@ "specLocation": "_global/bulk/types.ts#L37-L81" }, { + "kind": "interface", "generics": [ { "name": "TDocument", @@ -20721,7 +20722,6 @@ "namespace": "_global.bulk.UpdateAction" } ], - "kind": "interface", "name": { "name": "UpdateAction", "namespace": "_global.bulk" @@ -20819,13 +20819,13 @@ "specLocation": "_global/bulk/types.ts#L169-L205" }, { + "kind": "interface", "inherits": { "type": { "name": "OperationBase", "namespace": "_global.bulk" } }, - "kind": "interface", "name": { "name": "UpdateOperation", "namespace": "_global.bulk" @@ -20859,13 +20859,13 @@ "specLocation": "_global/bulk/types.ts#L136-L143" }, { + "kind": "interface", "inherits": { "type": { "name": "OperationBase", "namespace": "_global.bulk" } }, - "kind": "interface", "name": { "name": "WriteOperation", "namespace": "_global.bulk" @@ -20876,6 +20876,7 @@ "name": "dynamic_templates", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -20883,7 +20884,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -20923,6 +20923,7 @@ "specLocation": "_global/bulk/types.ts#L109-L128" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -20950,7 +20951,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.clear_scroll" @@ -20973,6 +20973,7 @@ "specLocation": "_global/clear_scroll/ClearScrollRequest.ts#L23-L45" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -21034,7 +21035,6 @@ ] } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.clear_scroll" @@ -21042,6 +21042,7 @@ "specLocation": "_global/clear_scroll/ClearScrollResponse.ts#L22-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -21069,7 +21070,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.close_point_in_time" @@ -21079,6 +21079,7 @@ "specLocation": "_global/close_point_in_time/ClosePointInTimeRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -21140,7 +21141,6 @@ ] } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.close_point_in_time" @@ -21148,6 +21148,7 @@ "specLocation": "_global/close_point_in_time/ClosePointInTimeResponse.ts#L22-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -21175,7 +21176,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.count" @@ -21373,6 +21373,7 @@ "specLocation": "_global/count/CountRequest.ts#L26-L120" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -21400,7 +21401,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.count" @@ -21408,12 +21408,13 @@ "specLocation": "_global/count/CountResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "document", "kind": "value", + "codegenName": "document", "value": { "kind": "instance_of", "type": { @@ -21435,7 +21436,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.create" @@ -21558,6 +21558,7 @@ "specLocation": "_global/create/CreateRequest.ts#L32-L96" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -21568,7 +21569,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.create" @@ -21576,6 +21576,7 @@ "specLocation": "_global/create/CreateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -21589,7 +21590,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.delete" @@ -21724,6 +21724,7 @@ "specLocation": "_global/delete/DeleteRequest.ts#L34-L92" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -21739,6 +21740,7 @@ "body": { "kind": "value", "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -21754,8 +21756,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, "description": "\nIf the index does exist, but the document does not,\nthe response is the same as the successful case, but with a 404.", @@ -21764,7 +21765,6 @@ ] } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.delete" @@ -21772,6 +21772,7 @@ "specLocation": "_global/delete/DeleteResponse.ts#L22-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -21823,7 +21824,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.delete_by_query" @@ -22214,6 +22214,7 @@ "specLocation": "_global/delete_by_query/DeleteByQueryRequest.ts#L36-L210" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -22323,6 +22324,7 @@ "name": "throttled_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -22332,7 +22334,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -22354,6 +22355,7 @@ "name": "throttled_until_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -22363,7 +22365,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -22385,6 +22386,7 @@ "name": "took", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -22394,7 +22396,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -22425,7 +22426,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.delete_by_query" @@ -22433,6 +22433,7 @@ "specLocation": "_global/delete_by_query/DeleteByQueryResponse.ts#L26-L45" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -22446,7 +22447,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.delete_by_query_rethrottle" @@ -22482,6 +22482,7 @@ "specLocation": "_global/delete_by_query_rethrottle/DeleteByQueryRethrottleRequest.ts#L24-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -22492,7 +22493,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.delete_by_query_rethrottle" @@ -22500,6 +22500,7 @@ "specLocation": "_global/delete_by_query_rethrottle/DeleteByQueryRethrottleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -22513,7 +22514,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.delete_script" @@ -22563,6 +22563,7 @@ "specLocation": "_global/delete_script/DeleteScriptRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -22573,7 +22574,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.delete_script" @@ -22581,6 +22581,7 @@ "specLocation": "_global/delete_script/DeleteScriptResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -22594,7 +22595,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.exists" @@ -22756,10 +22756,10 @@ "specLocation": "_global/exists/DocumentExistsRequest.ts#L31-L100" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.exists" @@ -22767,6 +22767,7 @@ "specLocation": "_global/exists/DocumentExistsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -22780,7 +22781,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.exists_source" @@ -22930,10 +22930,10 @@ "specLocation": "_global/exists_source/SourceExistsRequest.ts#L31-L94" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.exists_source" @@ -23033,6 +23033,7 @@ "specLocation": "_global/explain/types.ts#L28-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -23060,7 +23061,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.explain" @@ -23243,6 +23243,7 @@ "specLocation": "_global/explain/ExplainRequest.ts#L26-L106" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -23294,6 +23295,7 @@ "name": "get", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -23303,7 +23305,6 @@ } } ], - "kind": "instance_of", "type": { "name": "InlineGet", "namespace": "_types" @@ -23318,7 +23319,6 @@ "namespace": "_global.explain.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.explain" @@ -23523,6 +23523,7 @@ "specLocation": "_global/field_caps/types.ts#L23-L81" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -23588,7 +23589,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.field_caps" @@ -23734,6 +23734,7 @@ "specLocation": "_global/field_caps/FieldCapabilitiesRequest.ts#L25-L106" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -23752,6 +23753,7 @@ "name": "fields", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -23759,9 +23761,9 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -23769,7 +23771,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -23783,7 +23784,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.field_caps" @@ -23791,13 +23791,13 @@ "specLocation": "_global/field_caps/FieldCapabilitiesResponse.ts#L24-L35" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "_global.get.GetResult" } ], - "kind": "interface", "name": { "name": "GetResult", "namespace": "_global.get" @@ -23818,6 +23818,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -23825,7 +23826,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -23927,6 +23927,7 @@ "specLocation": "_global/get/types.ts#L25-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -23940,7 +23941,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.get" @@ -24121,9 +24121,11 @@ "specLocation": "_global/get/GetRequest.ts#L31-L100" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -24133,7 +24135,6 @@ } } ], - "kind": "instance_of", "type": { "name": "GetResult", "namespace": "_global.get" @@ -24145,8 +24146,10 @@ "body": { "kind": "value", "value": { + "kind": "union_of", "items": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -24156,7 +24159,6 @@ } } ], - "kind": "instance_of", "type": { "name": "GetResult", "namespace": "_global.get" @@ -24169,8 +24171,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, "statusCodes": [ @@ -24184,7 +24185,6 @@ "namespace": "_global.get.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.get" @@ -24192,6 +24192,7 @@ "specLocation": "_global/get/GetResponse.ts#L23-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -24205,7 +24206,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.get_script" @@ -24241,6 +24241,7 @@ "specLocation": "_global/get_script/GetScriptRequest.ts#L24-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -24279,7 +24280,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.get_script" @@ -24400,6 +24400,7 @@ "specLocation": "_global/get_script_context/types.ts#L33-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -24413,7 +24414,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.get_script_context" @@ -24423,6 +24423,7 @@ "specLocation": "_global/get_script_context/GetScriptContextRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -24442,7 +24443,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.get_script_context" @@ -24485,6 +24485,7 @@ "specLocation": "_global/get_script_languages/types.ts#L22-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -24498,7 +24499,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.get_script_languages" @@ -24508,6 +24508,7 @@ "specLocation": "_global/get_script_languages/GetScriptLanguagesRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -24541,7 +24542,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.get_script_languages" @@ -24549,6 +24549,7 @@ "specLocation": "_global/get_script_languages/GetScriptLanguagesResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -24562,7 +24563,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.get_source" @@ -24722,6 +24722,7 @@ "specLocation": "_global/get_source/SourceRequest.ts#L31-L88" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -24738,7 +24739,6 @@ "namespace": "_global.get_source.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.get_source" @@ -24852,6 +24852,7 @@ "specLocation": "_global/health_report/types.ts#L152-L156" }, { + "kind": "interface", "description": "DATA_STREAM_LIFECYCLE", "inherits": { "type": { @@ -24859,7 +24860,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "DataStreamLifecycleIndicator", "namespace": "_global.health_report" @@ -25022,6 +25022,7 @@ "specLocation": "_global/health_report/types.ts#L58-L64" }, { + "kind": "interface", "description": "DISK", "inherits": { "type": { @@ -25029,7 +25030,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "DiskIndicator", "namespace": "_global.health_report" @@ -25115,6 +25115,7 @@ "specLocation": "_global/health_report/types.ts#L128-L134" }, { + "kind": "interface", "description": "ILM", "inherits": { "type": { @@ -25122,7 +25123,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "IlmIndicator", "namespace": "_global.health_report" @@ -25297,6 +25297,7 @@ "name": "name", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -25312,14 +25313,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "node_id", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -25335,8 +25336,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -25441,6 +25441,7 @@ "specLocation": "_global/health_report/types.ts#L32-L41" }, { + "kind": "interface", "description": "MASTER_IS_STABLE", "inherits": { "type": { @@ -25448,7 +25449,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "MasterIsStableIndicator", "namespace": "_global.health_report" @@ -25604,6 +25604,7 @@ "specLocation": "_global/health_report/types.ts#L95-L98" }, { + "kind": "interface", "description": "REPOSITORY_INTEGRITY", "inherits": { "type": { @@ -25611,7 +25612,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "RepositoryIntegrityIndicator", "namespace": "_global.health_report" @@ -25678,6 +25678,7 @@ "specLocation": "_global/health_report/types.ts#L141-L145" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -25691,7 +25692,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.health_report" @@ -25702,6 +25702,7 @@ "name": "feature", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -25720,8 +25721,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -25768,6 +25768,7 @@ "specLocation": "_global/health_report/Request.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -25806,7 +25807,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.health_report" @@ -25814,6 +25814,7 @@ "specLocation": "_global/health_report/Response.ts#L22-L28" }, { + "kind": "interface", "description": "SHARDS_AVAILABILITY", "inherits": { "type": { @@ -25821,7 +25822,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "ShardsAvailabilityIndicator", "namespace": "_global.health_report" @@ -25962,6 +25962,7 @@ "specLocation": "_global/health_report/types.ts#L110-L121" }, { + "kind": "interface", "description": "SHARDS_CAPACITY", "inherits": { "type": { @@ -25969,7 +25970,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "ShardsCapacityIndicator", "namespace": "_global.health_report" @@ -26054,6 +26054,7 @@ "specLocation": "_global/health_report/types.ts#L201-L204" }, { + "kind": "interface", "description": "SLM", "inherits": { "type": { @@ -26061,7 +26062,6 @@ "namespace": "_global.health_report" } }, - "kind": "interface", "name": { "name": "SlmIndicator", "namespace": "_global.health_report" @@ -26146,6 +26146,7 @@ "name": "invocations_since_last_success", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -26153,7 +26154,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -26211,12 +26211,13 @@ "specLocation": "_global/health_report/types.ts#L157-L161" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "document", "kind": "value", + "codegenName": "document", "value": { "kind": "instance_of", "type": { @@ -26238,7 +26239,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.index" @@ -26409,6 +26409,7 @@ "specLocation": "_global/index/IndexRequest.ts#L35-L118" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -26419,7 +26420,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.index" @@ -26427,6 +26427,7 @@ "specLocation": "_global/index/IndexResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -26440,7 +26441,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.info" @@ -26450,6 +26450,7 @@ "specLocation": "_global/info/RootNodeInfoRequest.ts#L22-L29" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -26510,7 +26511,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.info" @@ -26518,6 +26518,7 @@ "specLocation": "_global/info/RootNodeInfoResponse.ts#L23-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -26586,6 +26587,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -26604,8 +26606,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -26633,7 +26634,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.knn_search" @@ -26669,6 +26669,7 @@ "specLocation": "_global/knn_search/KnnSearchRequest.ts#L27-L80" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -26713,6 +26714,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -26722,7 +26724,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -26734,6 +26735,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -26741,7 +26743,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -26768,7 +26769,6 @@ "namespace": "_global.knn_search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.knn_search" @@ -26969,6 +26969,7 @@ "specLocation": "_global/mget/types.ts#L32-L55" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -27011,7 +27012,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.mget" @@ -27159,6 +27159,7 @@ "specLocation": "_global/mget/MultiGetRequest.ts#L25-L98" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -27168,6 +27169,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -27177,7 +27179,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseItem", "namespace": "_global.mget" @@ -27193,7 +27194,6 @@ "namespace": "_global.mget.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.mget" @@ -27201,6 +27201,7 @@ "specLocation": "_global/mget/MultiGetResponse.ts#L22-L26" }, { + "kind": "type_alias", "codegenNames": [ "result", "failure" @@ -27211,15 +27212,16 @@ "namespace": "_global.mget.ResponseItem" } ], - "kind": "type_alias", "name": { "name": "ResponseItem", "namespace": "_global.mget" }, "specLocation": "_global/mget/types.ts#L57-L60", "type": { + "kind": "union_of", "items": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -27229,7 +27231,6 @@ } } ], - "kind": "instance_of", "type": { "name": "GetResult", "namespace": "_global.get" @@ -27242,11 +27243,11 @@ "namespace": "_global.mget" } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "generics": [ { "name": "TDocument", @@ -27268,7 +27269,6 @@ "namespace": "_global.search" } }, - "kind": "interface", "name": { "name": "MultiSearchItem", "namespace": "_global.msearch" @@ -27289,13 +27289,13 @@ "specLocation": "_global/msearch/types.ts#L213-L216" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "_global.msearch.MultiSearchResult" } ], - "kind": "interface", "name": { "name": "MultiSearchResult", "namespace": "_global.msearch" @@ -27318,6 +27318,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -27327,7 +27328,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseItem", "namespace": "_global.msearch" @@ -27352,6 +27352,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -27359,7 +27360,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -27411,6 +27411,7 @@ "name": "ext", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -27418,7 +27419,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -27463,6 +27463,7 @@ "name": "knn", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -27481,8 +27482,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -27516,6 +27516,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -27523,7 +27524,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -27573,6 +27573,7 @@ "name": "rescore", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -27591,8 +27592,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -27600,6 +27600,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -27607,7 +27608,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -27811,8 +27811,8 @@ "specLocation": "_global/msearch/types.ts#L70-L201" }, { - "description": "Contains parameters used to limit or change the subsequent search body request.", "kind": "interface", + "description": "Contains parameters used to limit or change the subsequent search body request.", "name": { "name": "MultisearchHeader", "namespace": "_global.msearch" @@ -27943,12 +27943,13 @@ "specLocation": "_global/msearch/types.ts#L52-L67" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "searches", "kind": "value", + "codegenName": "searches", "value": { "kind": "array_of", "value": { @@ -27967,7 +27968,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.msearch" @@ -28155,17 +28155,18 @@ "specLocation": "_global/msearch/MultiSearchRequest.ts#L25-L106" }, { + "kind": "type_alias", "codegenNames": [ "header", "body" ], - "kind": "type_alias", "name": { "name": "RequestItem", "namespace": "_global.msearch" }, "specLocation": "_global/msearch/types.ts#L47-L50", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -28181,14 +28182,15 @@ "namespace": "_global.msearch" } } - ], - "kind": "union_of" + ] } }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -28198,7 +28200,6 @@ } } ], - "kind": "instance_of", "type": { "name": "MultiSearchResult", "namespace": "_global.msearch" @@ -28211,7 +28212,6 @@ "namespace": "_global.msearch.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.msearch" @@ -28219,6 +28219,7 @@ "specLocation": "_global/msearch/MultiSearchResponse.ts#L25-L27" }, { + "kind": "type_alias", "codegenNames": [ "result", "failure" @@ -28229,15 +28230,16 @@ "namespace": "_global.msearch.ResponseItem" } ], - "kind": "type_alias", "name": { "name": "ResponseItem", "namespace": "_global.msearch" }, "specLocation": "_global/msearch/types.ts#L208-L211", "type": { + "kind": "union_of", "items": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -28247,7 +28249,6 @@ } } ], - "kind": "instance_of", "type": { "name": "MultiSearchItem", "namespace": "_global.msearch" @@ -28260,17 +28261,17 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "search_templates", "kind": "value", + "codegenName": "search_templates", "value": { "kind": "array_of", "value": { @@ -28289,7 +28290,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.msearch_template" @@ -28376,17 +28376,18 @@ "specLocation": "_global/msearch_template/MultiSearchTemplateRequest.ts#L25-L70" }, { + "kind": "type_alias", "codegenNames": [ "header", "body" ], - "kind": "type_alias", "name": { "name": "RequestItem", "namespace": "_global.msearch_template" }, "specLocation": "_global/msearch_template/types.ts#L25-L26", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -28402,14 +28403,15 @@ "namespace": "_global.msearch_template" } } - ], - "kind": "union_of" + ] } }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -28419,7 +28421,6 @@ } } ], - "kind": "instance_of", "type": { "name": "MultiSearchResult", "namespace": "_global.msearch" @@ -28432,7 +28433,6 @@ "namespace": "_global.msearch_template.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.msearch_template" @@ -28476,6 +28476,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -28483,7 +28484,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -28686,6 +28686,7 @@ "specLocation": "_global/mtermvectors/types.ts#L35-L94" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -28731,7 +28732,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.mtermvectors" @@ -28910,6 +28910,7 @@ "specLocation": "_global/mtermvectors/MultiTermVectorsRequest.ts#L31-L109" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -28929,7 +28930,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.mtermvectors" @@ -29002,6 +29002,7 @@ "name": "term_vectors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -29009,7 +29010,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -29035,6 +29035,7 @@ "specLocation": "_global/mtermvectors/types.ts#L96-L104" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -29048,7 +29049,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.open_point_in_time" @@ -29134,6 +29134,7 @@ "specLocation": "_global/open_point_in_time/OpenPointInTimeRequest.ts#L24-L68" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -29150,7 +29151,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.open_point_in_time" @@ -29158,6 +29158,7 @@ "specLocation": "_global/open_point_in_time/OpenPointInTimeResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -29171,7 +29172,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.ping" @@ -29181,10 +29181,10 @@ "specLocation": "_global/ping/PingRequest.ts#L22-L29" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.ping" @@ -29192,6 +29192,7 @@ "specLocation": "_global/ping/PingResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -29219,7 +29220,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.put_script" @@ -29281,6 +29281,7 @@ "specLocation": "_global/put_script/PutScriptRequest.ts#L25-L65" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -29291,7 +29292,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.put_script" @@ -29409,6 +29409,7 @@ "name": "rating", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -29424,8 +29425,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -29573,6 +29573,7 @@ "name": "metric_details", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -29580,9 +29581,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -29590,7 +29591,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -29602,6 +29602,7 @@ "specLocation": "_global/rank_eval/types.ts#L128-L137" }, { + "kind": "interface", "description": "Discounted cumulative gain (DCG)", "docId": "dcg", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#_discounted_cumulative_gain_dcg", @@ -29611,7 +29612,6 @@ "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricDiscountedCumulativeGain", "namespace": "_global.rank_eval" @@ -29635,6 +29635,7 @@ "specLocation": "_global/rank_eval/types.ts#L66-L77" }, { + "kind": "interface", "description": "Expected Reciprocal Rank (ERR)", "docId": "expected-reciprocal", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#_expected_reciprocal_rank_err", @@ -29644,7 +29645,6 @@ "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricExpectedReciprocalRank", "namespace": "_global.rank_eval" @@ -29666,6 +29666,7 @@ "specLocation": "_global/rank_eval/types.ts#L79-L88" }, { + "kind": "interface", "description": "Mean Reciprocal Rank", "docId": "mean-reciprocal", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#_mean_reciprocal_rank", @@ -29675,7 +29676,6 @@ "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricMeanReciprocalRank", "namespace": "_global.rank_eval" @@ -29684,6 +29684,7 @@ "specLocation": "_global/rank_eval/types.ts#L60-L64" }, { + "kind": "interface", "description": "Precision at K (P@k)", "docId": "k-precision", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#k-precision", @@ -29693,7 +29694,6 @@ "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricPrecision", "namespace": "_global.rank_eval" @@ -29716,13 +29716,13 @@ "specLocation": "_global/rank_eval/types.ts#L42-L52" }, { + "kind": "interface", "inherits": { "type": { "name": "RankEvalMetricBase", "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricRatingTreshold", "namespace": "_global.rank_eval" @@ -29745,6 +29745,7 @@ "specLocation": "_global/rank_eval/types.ts#L34-L40" }, { + "kind": "interface", "description": "Recall at K (R@k)", "docId": "k-recall", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-rank-eval.html#k-recall", @@ -29754,7 +29755,6 @@ "namespace": "_global.rank_eval" } }, - "kind": "interface", "name": { "name": "RankEvalMetricRecall", "namespace": "_global.rank_eval" @@ -29858,6 +29858,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -29865,7 +29866,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -29876,6 +29876,7 @@ "specLocation": "_global/rank_eval/types.ts#L98-L109" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -29918,7 +29919,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.rank_eval" @@ -29992,6 +29992,7 @@ "specLocation": "_global/rank_eval/RankEvalRequest.ts#L24-L61" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -30012,6 +30013,7 @@ "name": "details", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -30019,7 +30021,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -30034,6 +30035,7 @@ "name": "failures", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -30041,7 +30043,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -30050,7 +30051,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.rank_eval" @@ -30185,6 +30185,7 @@ "name": "headers", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -30192,7 +30193,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -30255,6 +30255,7 @@ "specLocation": "_global/reindex/types.ts#L99-L125" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -30342,7 +30343,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.reindex" @@ -30456,6 +30456,7 @@ "specLocation": "_global/reindex/ReindexRequest.ts#L27-L103" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -30565,6 +30566,7 @@ "name": "throttled_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -30574,7 +30576,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -30585,6 +30586,7 @@ "name": "throttled_until_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -30594,7 +30596,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -30616,6 +30617,7 @@ "name": "took", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -30625,7 +30627,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -30667,7 +30668,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.reindex" @@ -30781,13 +30781,13 @@ "specLocation": "_global/reindex/types.ts#L66-L97" }, { + "kind": "interface", "inherits": { "type": { "name": "BaseNode", "namespace": "_spec_utils" } }, - "kind": "interface", "name": { "name": "ReindexNode", "namespace": "_global.reindex_rethrottle" @@ -30797,6 +30797,7 @@ "name": "tasks", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -30804,7 +30805,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -30913,6 +30913,7 @@ "name": "throttled_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -30922,7 +30923,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -30945,6 +30945,7 @@ "name": "throttled_until_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -30954,7 +30955,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -31066,6 +31066,7 @@ "name": "running_time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -31075,7 +31076,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -31086,6 +31086,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -31095,7 +31096,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -31139,6 +31139,7 @@ "specLocation": "_global/reindex_rethrottle/types.ts#L87-L98" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -31152,7 +31153,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.reindex_rethrottle" @@ -31188,6 +31188,7 @@ "specLocation": "_global/reindex_rethrottle/ReindexRethrottleRequest.ts#L24-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -31195,6 +31196,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31202,7 +31204,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -31215,7 +31216,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.reindex_rethrottle" @@ -31223,6 +31223,7 @@ "specLocation": "_global/reindex_rethrottle/ReindexRethrottleResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -31245,6 +31246,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31252,7 +31254,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -31280,7 +31281,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.render_search_template" @@ -31303,6 +31303,7 @@ "specLocation": "_global/render_search_template/RenderSearchTemplateRequest.ts#L25-L55" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -31310,6 +31311,7 @@ "name": "template_output", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31317,7 +31319,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -31326,7 +31327,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.render_search_template" @@ -31376,6 +31376,7 @@ "specLocation": "_global/scripts_painless_execute/types.ts#L25-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -31428,7 +31429,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.scripts_painless_execute" @@ -31438,6 +31438,7 @@ "specLocation": "_global/scripts_painless_execute/ExecutePainlessScriptRequest.ts#L24-L47" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -31460,7 +31461,6 @@ "namespace": "_global.scripts_painless_execute.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.scripts_painless_execute" @@ -31468,6 +31468,7 @@ "specLocation": "_global/scripts_painless_execute/ExecutePainlessScriptResponse.ts#L20-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -31510,7 +31511,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.scroll" @@ -31582,9 +31582,11 @@ "specLocation": "_global/scroll/ScrollRequest.ts#L24-L59" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -31594,7 +31596,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseBody", "namespace": "_global.search" @@ -31607,7 +31608,6 @@ "namespace": "_global.scroll.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.scroll" @@ -31615,6 +31615,7 @@ "specLocation": "_global/scroll/ScrollResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -31629,6 +31630,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31636,7 +31638,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -31677,6 +31678,7 @@ "name": "ext", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31684,7 +31686,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -31736,6 +31737,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31743,7 +31745,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -31781,6 +31782,7 @@ "name": "knn", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -31799,8 +31801,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -31875,6 +31876,7 @@ "name": "rescore", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -31893,8 +31895,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -31920,6 +31921,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -31927,7 +31929,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -32151,7 +32152,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.search" @@ -32723,6 +32723,7 @@ "name": "sort", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -32741,8 +32742,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -32768,9 +32768,11 @@ "specLocation": "_global/search/SearchRequest.ts#L54-L530" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -32780,7 +32782,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseBody", "namespace": "_global.search" @@ -32793,7 +32794,6 @@ "namespace": "_global.search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.search" @@ -32801,13 +32801,13 @@ "specLocation": "_global/search/SearchResponse.ts#L34-L36" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "_global.search.ResponseBody" } ], - "kind": "interface", "name": { "name": "ResponseBody", "namespace": "_global.search" @@ -32850,6 +32850,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -32859,7 +32860,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -32870,6 +32870,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -32877,7 +32878,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -32903,6 +32903,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -32910,7 +32911,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -32976,6 +32976,7 @@ "name": "suggest", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -32983,11 +32984,11 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -32997,7 +32998,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Suggest", "namespace": "_global.search._types" @@ -33195,6 +33195,7 @@ "name": "time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -33204,7 +33205,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -33683,6 +33683,7 @@ "name": "time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -33692,7 +33693,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -33793,6 +33793,7 @@ "specLocation": "_global/search/_types/suggester.ts#L235-L264" }, { + "kind": "interface", "generics": [ { "name": "TDocument", @@ -33805,7 +33806,6 @@ "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "CompletionSuggest", "namespace": "_global.search._types" @@ -33815,8 +33815,10 @@ "name": "options", "required": true, "type": { + "kind": "union_of", "items": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -33826,7 +33828,6 @@ } } ], - "kind": "instance_of", "type": { "name": "CompletionSuggestOption", "namespace": "_global.search._types" @@ -33835,6 +33836,7 @@ { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -33844,15 +33846,13 @@ } } ], - "kind": "instance_of", "type": { "name": "CompletionSuggestOption", "namespace": "_global.search._types" } } } - ], - "kind": "union_of" + ] } } ], @@ -33860,13 +33860,13 @@ "variantName": "completion" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "_global.search._types.CompletionSuggestOption" } ], - "kind": "interface", "name": { "name": "CompletionSuggestOption", "namespace": "_global.search._types" @@ -33887,6 +33887,7 @@ "name": "contexts", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -33894,7 +33895,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -33912,6 +33912,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -33919,7 +33920,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -34007,13 +34007,13 @@ "specLocation": "_global/search/_types/suggester.ts#L73-L84" }, { + "kind": "interface", "inherits": { "type": { "name": "SuggesterBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "CompletionSuggester", "namespace": "_global.search._types" @@ -34024,6 +34024,7 @@ "name": "contexts", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -34031,9 +34032,9 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -34052,8 +34053,7 @@ } } } - ], - "kind": "union_of" + ] } } }, @@ -34098,6 +34098,7 @@ "specLocation": "_global/search/_types/suggester.ts#L163-L181" }, { + "kind": "type_alias", "codegenNames": [ "category", "location" @@ -34105,13 +34106,13 @@ "description": "Text or location that we want similar documents for or a lookup to a document's field for the text.", "docId": "document-input-parameters", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-mlt-query.html#_document_input_parameters", - "kind": "type_alias", "name": { "name": "Context", "namespace": "_global.search._types" }, "specLocation": "_global/search/_types/suggester.ts#L228-L233", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -34127,8 +34128,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -34313,6 +34313,7 @@ "name": "time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -34322,7 +34323,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -34525,6 +34525,7 @@ "name": "inner_hits", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -34543,8 +34544,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -34663,13 +34663,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "HighlightBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "Highlight", "namespace": "_global.search._types" @@ -34690,6 +34690,7 @@ "name": "fields", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -34697,7 +34698,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -34897,6 +34897,7 @@ "name": "options", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -34904,7 +34905,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -34996,13 +34996,13 @@ "specLocation": "_global/search/_types/highlighting.ts#L48-L151" }, { + "kind": "interface", "inherits": { "type": { "name": "HighlightBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "HighlightField", "namespace": "_global.search._types" @@ -35092,8 +35092,8 @@ "specLocation": "_global/search/_types/highlighting.ts#L172-L174" }, { - "isOpen": true, "kind": "enum", + "isOpen": true, "members": [ { "description": "The `plain` highlighter uses the standard Lucene highlighter", @@ -35116,13 +35116,13 @@ "specLocation": "_global/search/_types/highlighting.ts#L176-L191" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "_global.search._types.Hit" } ], - "kind": "interface", "name": { "name": "Hit", "namespace": "_global.search._types" @@ -35140,7 +35140,7 @@ } }, { - "esQuirk": "'_id' is not available when using 'stored_fields: _none_'\non a search request. Otherwise the field is always present on hits.", + "esQuirk": "'_id' is not available when using 'stored_fields: _none_'\r\non a search request. Otherwise the field is always present on hits.", "name": "_id", "required": false, "type": { @@ -35155,6 +35155,7 @@ "name": "_score", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -35170,8 +35171,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -35189,6 +35189,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35196,7 +35197,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -35207,6 +35207,7 @@ "name": "highlight", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35214,7 +35215,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -35232,6 +35232,7 @@ "name": "inner_hits", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35239,7 +35240,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -35254,6 +35254,7 @@ "name": "matched_queries", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -35266,6 +35267,7 @@ } }, { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35273,7 +35275,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -35286,8 +35287,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -35319,6 +35319,7 @@ "name": "ignored_field_values", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35326,7 +35327,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -35443,13 +35443,13 @@ "specLocation": "_global/search/_types/hits.ts#L40-L65" }, { + "kind": "interface", "generics": [ { "name": "T", "namespace": "_global.search._types.HitsMetadata" } ], - "kind": "interface", "name": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -35460,6 +35460,7 @@ "name": "total", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -35475,8 +35476,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -35485,6 +35485,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -35494,7 +35495,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Hit", "namespace": "_global.search._types" @@ -35506,6 +35506,7 @@ "name": "max_score", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -35521,8 +35522,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -35635,6 +35635,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35642,7 +35643,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -35746,12 +35746,12 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "user_defined_value" } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -35807,6 +35807,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35814,7 +35815,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -35911,13 +35911,13 @@ "specLocation": "_global/search/_types/hits.ts#L89-L93" }, { + "kind": "interface", "inherits": { "type": { "name": "SuggestBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "PhraseSuggest", "namespace": "_global.search._types" @@ -35927,6 +35927,7 @@ "name": "options", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -35945,8 +35946,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -35965,6 +35965,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -35972,7 +35973,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -36129,13 +36129,13 @@ "specLocation": "_global/search/_types/suggester.ts#L86-L91" }, { + "kind": "interface", "inherits": { "type": { "name": "SuggesterBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "PhraseSuggester", "namespace": "_global.search._types" @@ -36602,6 +36602,7 @@ "name": "time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -36611,7 +36612,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -36660,6 +36660,7 @@ "name": "flags", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -36675,8 +36676,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -36994,18 +36994,19 @@ } }, { + "kind": "type_alias", "codegenNames": [ "fetch", "filter" ], "description": "Defines how to fetch a source. Fetching can be disabled entirely, or the source can be filtered.", - "kind": "type_alias", "name": { "name": "SourceConfig", "namespace": "_global.search._types" }, "specLocation": "_global/search/_types/SourceFilter.ts#L33-L37", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -37021,23 +37022,23 @@ "namespace": "_global.search._types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "codegenNames": [ "fetch", "fields" ], "description": "Defines how to fetch a source. Fetching can be disabled entirely, or the source can be filtered.\nUsed as a query parameter along with the `_source_includes` and `_source_excludes` parameters.", - "kind": "type_alias", "name": { "name": "SourceConfigParam", "namespace": "_global.search._types" }, "specLocation": "_global/search/_types/SourceFilter.ts#L39-L45", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -37053,8 +37054,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -37149,21 +37149,23 @@ "specLocation": "_global/search/_types/suggester.ts#L463-L468" }, { + "kind": "type_alias", "generics": [ { "name": "TDocument", "namespace": "_global.search._types.Suggest" } ], - "kind": "type_alias", "name": { "name": "Suggest", "namespace": "_global.search._types" }, "specLocation": "_global/search/_types/suggester.ts#L34-L40", "type": { + "kind": "union_of", "items": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -37173,7 +37175,6 @@ } } ], - "kind": "instance_of", "type": { "name": "CompletionSuggest", "namespace": "_global.search._types" @@ -37193,8 +37194,7 @@ "namespace": "_global.search._types" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "external_tag" @@ -37339,6 +37339,7 @@ "specLocation": "_global/search/_types/suggester.ts#L495-L504" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -37370,7 +37371,6 @@ } } ], - "kind": "interface", "name": { "name": "Suggester", "namespace": "_global.search._types" @@ -37438,13 +37438,13 @@ "specLocation": "_global/search/_types/suggester.ts#L144-L159" }, { + "kind": "interface", "inherits": { "type": { "name": "SuggestBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "TermSuggest", "namespace": "_global.search._types" @@ -37454,6 +37454,7 @@ "name": "options", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -37472,8 +37473,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -37546,13 +37546,13 @@ "specLocation": "_global/search/_types/suggester.ts#L93-L99" }, { + "kind": "interface", "inherits": { "type": { "name": "SuggesterBase", "namespace": "_global.search._types" } }, - "kind": "interface", "name": { "name": "TermSuggester", "namespace": "_global.search._types" @@ -37762,18 +37762,19 @@ "specLocation": "_global/search/_types/hits.ts#L100-L105" }, { + "kind": "type_alias", "codegenNames": [ "enabled", "count" ], "description": "Number of hits matching the query to count accurately. If true, the exact\nnumber of hits is returned at the cost of some performance. If false, the\nresponse does not include the total number of hits matching the query.\nDefaults to 10,000 hits.", - "kind": "type_alias", "name": { "name": "TrackHits", "namespace": "_global.search._types" }, "specLocation": "_global/search/_types/hits.ts#L143-L151", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -37789,11 +37790,11 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -37805,6 +37806,7 @@ "name": "aggs", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -37812,7 +37814,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -37995,7 +37996,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.search_mvt" @@ -38156,6 +38156,7 @@ "specLocation": "_global/search_mvt/SearchMvtRequest.ts#L33-L190" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -38166,7 +38167,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.search_mvt" @@ -38245,6 +38245,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -38258,7 +38259,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.search_shards" @@ -38358,6 +38358,7 @@ "specLocation": "_global/search_shards/SearchShardsRequest.ts#L23-L70" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -38365,6 +38366,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38372,7 +38374,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -38404,6 +38405,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38411,7 +38413,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -38424,7 +38425,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.search_shards" @@ -38467,6 +38467,7 @@ "specLocation": "_global/search_shards/SearchShardsResponse.ts#L33-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -38503,6 +38504,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38510,7 +38512,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -38551,7 +38552,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.search_template" @@ -38745,6 +38745,7 @@ "specLocation": "_global/search_template/SearchTemplateRequest.ts#L32-L134" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -38785,6 +38786,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -38794,7 +38796,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -38805,6 +38806,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38812,7 +38814,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -38838,6 +38839,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38845,7 +38847,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -38911,6 +38912,7 @@ "name": "suggest", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -38918,11 +38920,11 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -38932,7 +38934,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Suggest", "namespace": "_global.search._types" @@ -38960,7 +38961,6 @@ "namespace": "_global.search_template.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.search_template" @@ -38968,6 +38968,7 @@ "specLocation": "_global/search_template/SearchTemplateResponse.ts#L30-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -39071,7 +39072,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.terms_enum" @@ -39094,6 +39094,7 @@ "specLocation": "_global/terms_enum/TermsEnumRequest.ts#L26-L65" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -39135,7 +39136,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.terms_enum" @@ -39285,6 +39285,7 @@ "specLocation": "_global/termvectors/types.ts#L49-L86" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -39320,6 +39321,7 @@ "name": "per_field_analyzer", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -39327,7 +39329,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -39353,7 +39354,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.termvectors" @@ -39529,6 +39529,7 @@ "specLocation": "_global/termvectors/TermVectorsRequest.ts#L33-L120" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -39569,6 +39570,7 @@ "name": "term_vectors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -39576,7 +39578,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -39611,7 +39612,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.termvectors" @@ -39708,6 +39708,7 @@ "name": "terms", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -39715,7 +39716,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -39784,6 +39784,7 @@ "specLocation": "_global/termvectors/types.ts#L42-L47" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -39897,7 +39898,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.update" @@ -40084,9 +40084,11 @@ "specLocation": "_global/update/UpdateRequest.ts#L38-L153" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -40096,7 +40098,6 @@ } } ], - "kind": "instance_of", "type": { "name": "UpdateWriteResponseBase", "namespace": "_global.update" @@ -40109,7 +40110,6 @@ "namespace": "_global.update.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "_global.update" @@ -40117,6 +40117,7 @@ "specLocation": "_global/update/UpdateResponse.ts#L27-L29" }, { + "kind": "interface", "generics": [ { "name": "TDocument", @@ -40129,7 +40130,6 @@ "namespace": "_types" } }, - "kind": "interface", "name": { "name": "UpdateWriteResponseBase", "namespace": "_global.update" @@ -40139,6 +40139,7 @@ "name": "get", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -40148,7 +40149,6 @@ } } ], - "kind": "instance_of", "type": { "name": "InlineGet", "namespace": "_types" @@ -40159,6 +40159,7 @@ "specLocation": "_global/update/UpdateResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -40235,7 +40236,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.update_by_query" @@ -40650,6 +40650,7 @@ "specLocation": "_global/update_by_query/UpdateByQueryRequest.ts#L37-L226" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -40748,6 +40749,7 @@ "name": "took", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -40757,7 +40759,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -40812,6 +40813,7 @@ "name": "throttled_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -40821,7 +40823,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -40843,6 +40844,7 @@ "name": "throttled_until_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -40852,7 +40854,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -40861,7 +40862,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.update_by_query" @@ -40869,6 +40869,7 @@ "specLocation": "_global/update_by_query/UpdateByQueryResponse.ts#L26-L45" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -40882,7 +40883,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "_global.update_by_query_rethrottle" @@ -40919,6 +40919,7 @@ "specLocation": "_global/update_by_query_rethrottle/UpdateByQueryRethrottleRequest.ts#L24-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -40926,6 +40927,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -40933,7 +40935,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -40946,7 +40947,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "_global.update_by_query_rethrottle" @@ -40954,13 +40954,13 @@ "specLocation": "_global/update_by_query_rethrottle/UpdateByQueryRethrottleResponse.ts#L23-L25" }, { + "kind": "interface", "inherits": { "type": { "name": "BaseNode", "namespace": "_spec_utils" } }, - "kind": "interface", "name": { "name": "UpdateByQueryRethrottleNode", "namespace": "_global.update_by_query_rethrottle" @@ -40970,6 +40970,7 @@ "name": "tasks", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -40977,7 +40978,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -41002,6 +41002,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -41009,7 +41010,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -41079,8 +41079,8 @@ "specLocation": "_spec_utils/BaseNode.ts#L25-L32" }, { - "description": "A `null` value that is to be interpreted as an actual value, unless other uses of `null` that are equivalent\nto a missing value. It is used for exemple in settings, where using the `NullValue` for a setting will reset\nit to its default value.", "kind": "type_alias", + "description": "A `null` value that is to be interpreted as an actual value, unless other uses of `null` that are equivalent\nto a missing value. It is used for exemple in settings, where using the `NullValue` for a setting will reset\nit to its default value.", "name": { "name": "NullValue", "namespace": "_spec_utils" @@ -41095,6 +41095,7 @@ } }, { + "kind": "type_alias", "description": "A set of flags that can be represented as a single enum value or a set of values that are encoded\nas a pipe-separated string\n\nDepending on the target language, code generators can use this hint to generate language specific\nflags enum constructs and the corresponding (de-)serialization code.", "generics": [ { @@ -41102,13 +41103,13 @@ "namespace": "_spec_utils.PipeSeparatedFlags" } ], - "kind": "type_alias", "name": { "name": "PipeSeparatedFlags", "namespace": "_spec_utils" }, "specLocation": "_spec_utils/PipeSeparatedFlags.ts#L20-L27", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -41124,11 +41125,11 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "description": "Some APIs will return values such as numbers also as a string (notably epoch timestamps). This behavior\nis used to capture this behavior while keeping the semantics of the field type.\n\nDepending on the target language, code generators can keep the union or remove it and leniently parse\nstrings to the target type.", "generics": [ { @@ -41136,13 +41137,13 @@ "namespace": "_spec_utils.Stringified" } ], - "kind": "type_alias", "name": { "name": "Stringified", "namespace": "_spec_utils" }, "specLocation": "_spec_utils/Stringified.ts#L20-L27", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -41158,13 +41159,12 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { - "description": "The absence of any type. This is commonly used in APIs that don't return a body.\n\nAlthough \"void\" is generally used for the unit type that has only one value, this is to be interpreted as\nthe bottom type that has no value at all. Most languages have a unit type, but few have a bottom type.\n\nSee https://en.m.wikipedia.org/wiki/Unit_type and https://en.m.wikipedia.org/wiki/Bottom_type", "kind": "type_alias", + "description": "The absence of any type. This is commonly used in APIs that don't return a body.\n\nAlthough \"void\" is generally used for the unit type that has only one value, this is to be interpreted as\nthe bottom type that has no value at all. Most languages have a unit type, but few have a bottom type.\n\nSee https://en.m.wikipedia.org/wiki/Unit_type and https://en.m.wikipedia.org/wiki/Bottom_type", "name": { "name": "Void", "namespace": "_spec_utils" @@ -41179,6 +41179,7 @@ } }, { + "kind": "type_alias", "description": "`WithNullValue` allows for explicit null assignments in contexts where `null` should be interpreted as an\nactual value.", "generics": [ { @@ -41186,13 +41187,13 @@ "namespace": "_spec_utils.WithNullValue" } ], - "kind": "type_alias", "name": { "name": "WithNullValue", "namespace": "_spec_utils" }, "specLocation": "_spec_utils/utils.ts#L29-L33", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -41208,8 +41209,7 @@ "namespace": "_spec_utils" } } - ], - "kind": "union_of" + ] } }, { @@ -41235,8 +41235,8 @@ "specLocation": "_types/Base.ts#L47-L50" }, { - "description": "The aggregation name as returned from the server. Depending whether typed_keys is specified this could come back\nin the form of `name#type` instead of simply `name`", "kind": "type_alias", + "description": "The aggregation name as returned from the server. Depending whether typed_keys is specified this could come back\nin the form of `name#type` instead of simply `name`", "name": { "name": "AggregateName", "namespace": "_types" @@ -41348,6 +41348,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -41357,7 +41358,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -41401,6 +41401,7 @@ "name": "avg_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -41410,7 +41411,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -41443,15 +41443,16 @@ "specLocation": "_types/Stats.ts#L68-L78" }, { + "kind": "type_alias", "docId": "byte-units", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/api-conventions.html#byte-units", - "kind": "type_alias", "name": { "name": "ByteSize", "namespace": "_types" }, "specLocation": "_types/common.ts#L96-L97", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -41467,8 +41468,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -41568,6 +41568,7 @@ "name": "took", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -41577,7 +41578,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -41656,6 +41656,7 @@ }, "specLocation": "_types/common.ts#L389-L389", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -41674,8 +41675,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -41780,6 +41780,7 @@ "name": "details", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -41787,7 +41788,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -41836,6 +41836,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -41843,7 +41844,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -41999,9 +41999,9 @@ "specLocation": "_types/Similarity.ts#L32-L40" }, { + "kind": "type_alias", "docId": "data-stream-path-param", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/indices-create-data-stream.html#indices-create-data-stream-api-path-params", - "kind": "type_alias", "name": { "name": "DataStreamName", "namespace": "_types" @@ -42023,6 +42023,7 @@ }, "specLocation": "_types/common.ts#L94-L94", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -42041,14 +42042,13 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "docId": "mapping-date-format", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/mapping-date-format.html", - "kind": "type_alias", "name": { "name": "DateFormat", "namespace": "_types" @@ -42078,14 +42078,15 @@ } }, { - "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.", "kind": "type_alias", + "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.", "name": { "name": "DateTime", "namespace": "_types" }, "specLocation": "_types/Time.ts#L22-L27", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -42095,6 +42096,7 @@ } }, { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -42104,14 +42106,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -42210,16 +42210,17 @@ "specLocation": "_types/Stats.ts#L97-L109" }, { + "kind": "type_alias", "description": "A duration. Units can be `nanos`, `micros`, `ms` (milliseconds), `s` (seconds), `m` (minutes), `h` (hours) and\n`d` (days). Also accepts \"0\" without a unit and \"-1\" to indicate an unspecified value.", "docId": "time-value", "docUrl": "https://github.com/elastic/elasticsearch/blob/{branch}/libs/core/src/main/java/org/elasticsearch/core/TimeValue.java", - "kind": "type_alias", "name": { "name": "Duration", "namespace": "_types" }, "specLocation": "_types/Time.ts#L52-L58", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -42236,13 +42237,12 @@ "kind": "literal_value", "value": 0 } - ], - "kind": "union_of" + ] } }, { - "description": "A date histogram interval. Similar to `Duration` with additional units: `w` (week), `M` (month), `q` (quarter) and\n`y` (year)", "kind": "type_alias", + "description": "A date histogram interval. Similar to `Duration` with additional units: `w` (week), `M` (month), `q` (quarter) and\n`y` (year)", "name": { "name": "DurationLarge", "namespace": "_types" @@ -42257,13 +42257,13 @@ } }, { + "kind": "type_alias", "generics": [ { "name": "Unit", "namespace": "_types.DurationValue" } ], - "kind": "type_alias", "name": { "name": "DurationValue", "namespace": "_types" @@ -42387,8 +42387,8 @@ "specLocation": "_types/Base.ts#L54-L64" }, { - "description": "Reduced (minimal) info ElasticsearchVersion", "kind": "interface", + "description": "Reduced (minimal) info ElasticsearchVersion", "name": { "name": "ElasticsearchVersionMinInfo", "namespace": "_types" @@ -42442,8 +42442,8 @@ "specLocation": "_types/Base.ts#L66-L74" }, { - "description": "For empty Class assignments", "kind": "interface", + "description": "For empty Class assignments", "name": { "name": "EmptyObject", "namespace": "_types" @@ -42452,13 +42452,13 @@ "specLocation": "_types/common.ts#L160-L161" }, { + "kind": "type_alias", "generics": [ { "name": "Unit", "namespace": "_types.EpochTime" } ], - "kind": "type_alias", "name": { "name": "EpochTime", "namespace": "_types" @@ -42473,6 +42473,7 @@ } }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -42501,7 +42502,6 @@ } ], "description": "Cause and details about a request failure. This class defines the properties common to all error types.\nAdditional details are also provided, that depend on the error type.", - "kind": "interface", "name": { "name": "ErrorCause", "namespace": "_types" @@ -42586,8 +42586,8 @@ "specLocation": "_types/Errors.ts#L25-L50" }, { - "description": "The response returned by Elasticsearch when request execution did not succeed.", "kind": "interface", + "description": "The response returned by Elasticsearch when request execution did not succeed.", "name": { "name": "ErrorResponseBase", "namespace": "_types" @@ -42671,6 +42671,7 @@ }, "specLocation": "_types/common.ts#L217-L217", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -42689,13 +42690,12 @@ } } } - ], - "kind": "union_of" + ] } }, { - "description": "Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.", "kind": "type_alias", + "description": "Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.", "name": { "name": "Field", "namespace": "_types" @@ -42884,6 +42884,7 @@ "specLocation": "_types/sort.ts#L37-L42" }, { + "kind": "type_alias", "codegenNames": [ "long", "double", @@ -42893,13 +42894,13 @@ "any" ], "description": "A field value.", - "kind": "type_alias", "name": { "name": "FieldValue", "namespace": "_types" }, "specLocation": "_types/common.ts#L25-L37", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -42939,8 +42940,7 @@ { "kind": "user_defined_value" } - ], - "kind": "union_of" + ] } }, { @@ -42987,6 +42987,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -42994,7 +42995,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -43016,6 +43016,7 @@ }, "specLocation": "_types/common.ts#L140-L140", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43034,8 +43035,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -43082,6 +43082,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -43091,7 +43092,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -43102,15 +43102,16 @@ "specLocation": "_types/Stats.ts#L123-L128" }, { + "kind": "type_alias", "docId": "fuzziness", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/common-options.html#fuzziness", - "kind": "type_alias", "name": { "name": "Fuzziness", "namespace": "_types" }, "specLocation": "_types/common.ts#L133-L134", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43126,11 +43127,11 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "codegenNames": [ "coords", "tlbr", @@ -43138,13 +43139,13 @@ "wkt" ], "description": "A geo bounding box. It can be represented in various ways:\n- as 4 top/bottom/left/right coordinates\n- as 2 top_left / bottom_right points\n- as 2 top_right / bottom_left points\n- as a WKT bounding box", - "kind": "type_alias", "name": { "name": "GeoBounds", "namespace": "_types" }, "specLocation": "_types/Geo.ts#L135-L148", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43174,11 +43175,11 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -43193,6 +43194,7 @@ } }, { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43211,8 +43213,7 @@ } } } - ], - "kind": "union_of" + ] } ], "meta": { @@ -43225,7 +43226,6 @@ } } ], - "kind": "interface", "name": { "name": "GeoDistanceSort", "namespace": "_types" @@ -43355,18 +43355,19 @@ "specLocation": "_types/Geo.ts#L131-L133" }, { + "kind": "type_alias", "codegenNames": [ "geohash_length", "distance" ], "description": "A precision that can be expressed as a geohash length between 1 and 12, or a distance measure like \"1km\", \"10m\".", - "kind": "type_alias", "name": { "name": "GeoHashPrecision", "namespace": "_types" }, "specLocation": "_types/Geo.ts#L86-L90", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43382,13 +43383,12 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { - "description": "A map hex cell (H3) reference", "kind": "type_alias", + "description": "A map hex cell (H3) reference", "name": { "name": "GeoHexCell", "namespace": "_types" @@ -43403,8 +43403,8 @@ } }, { - "description": "A GeoJson GeoLine.", "kind": "interface", + "description": "A GeoJson GeoLine.", "name": { "name": "GeoLine", "namespace": "_types" @@ -43444,6 +43444,7 @@ "specLocation": "_types/Geo.ts#L56-L62" }, { + "kind": "type_alias", "codegenNames": [ "latlon", "geohash", @@ -43451,13 +43452,13 @@ "text" ], "description": "A latitude/longitude as a 2 dimensional point. It can be represented in various ways:\n- as a `{lat, long}` object\n- as a geo hash value\n- as a `[lon, lat]` array\n- as a string in `\", \"` or WKT point formats", - "kind": "type_alias", "name": { "name": "GeoLocation", "namespace": "_types" }, "specLocation": "_types/Geo.ts#L104-L118", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43490,13 +43491,12 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { - "description": "A GeoJson shape, that can also use Elasticsearch's `envelope` extension.", "kind": "type_alias", + "description": "A GeoJson shape, that can also use Elasticsearch's `envelope` extension.", "name": { "name": "GeoShape", "namespace": "_types" @@ -43533,8 +43533,8 @@ "specLocation": "_types/Geo.ts#L64-L82" }, { - "description": "A map tile reference, represented as `{zoom}/{x}/{y}`", "kind": "type_alias", + "description": "A map tile reference, represented as `{zoom}/{x}/{y}`", "name": { "name": "GeoTile", "namespace": "_types" @@ -43596,6 +43596,7 @@ "name": "exists_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -43605,7 +43606,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -43638,6 +43638,7 @@ "name": "missing_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -43647,7 +43648,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -43680,6 +43680,7 @@ "name": "time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -43689,7 +43690,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -43764,6 +43764,7 @@ }, "specLocation": "_types/common.ts#L158-L158", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -43771,9 +43772,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43792,8 +43793,7 @@ } } } - ], - "kind": "union_of" + ] } } }, @@ -43852,6 +43852,7 @@ }, "specLocation": "_types/common.ts#L62-L62", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -43870,8 +43871,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -43981,6 +43981,7 @@ "name": "delete_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -43990,7 +43991,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -44045,6 +44045,7 @@ "name": "throttle_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -44054,7 +44055,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -44076,6 +44076,7 @@ "name": "index_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -44085,7 +44086,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -44118,6 +44118,7 @@ "name": "types", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -44125,7 +44126,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -44158,6 +44158,7 @@ }, "specLocation": "_types/common.ts#L67-L67", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -44176,13 +44177,12 @@ } } } - ], - "kind": "union_of" + ] } }, { - "description": "Controls how to deal with unavailable concrete indices (closed or missing), how wildcard expressions are expanded\nto actual indices (all, closed or open indices) and how to deal with wildcard expressions that resolve to no indices.", "kind": "interface", + "description": "Controls how to deal with unavailable concrete indices (closed or missing), how wildcard expressions are expanded\nto actual indices (all, closed or open indices) and how to deal with wildcard expressions that resolve to no indices.", "name": { "name": "IndicesOptions", "namespace": "_types" @@ -44242,13 +44242,13 @@ "specLocation": "_types/common.ts#L335-L362" }, { + "kind": "interface", "inherits": { "type": { "name": "AcknowledgedResponseBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "IndicesResponseBase", "namespace": "_types" @@ -44269,6 +44269,7 @@ "specLocation": "_types/Base.ts#L87-L89" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -44302,7 +44303,6 @@ "namespace": "_types.InlineGet" } ], - "kind": "interface", "name": { "name": "InlineGet", "namespace": "_types" @@ -44312,6 +44312,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -44319,7 +44320,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -44400,13 +44400,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "KnnQuery", "namespace": "_types" @@ -44477,6 +44477,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -44495,8 +44496,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -44515,13 +44515,13 @@ "specLocation": "_types/Knn.ts#L54-L69" }, { + "kind": "interface", "inherits": { "type": { "name": "RetrieverBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "KnnRetriever", "namespace": "_types" @@ -44686,6 +44686,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -44704,8 +44705,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -44956,6 +44956,7 @@ "name": "total_stopped_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -44965,7 +44966,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -44987,6 +44987,7 @@ "name": "total_throttled_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -44996,7 +44997,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -45018,6 +45018,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -45027,7 +45028,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -45045,6 +45045,7 @@ }, "specLocation": "_types/common.ts#L99-L99", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -45052,7 +45053,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -45067,6 +45067,7 @@ }, "specLocation": "_types/common.ts#L76-L76", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45085,21 +45086,21 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "description": "The minimum number of terms that should match as integer, percentage or range", "docId": "query-dsl-minimum-should-match", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-minimum-should-match.html", - "kind": "type_alias", "name": { "name": "MinimumShouldMatch", "namespace": "_types" }, "specLocation": "_types/common.ts#L163-L167", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45115,14 +45116,13 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "docId": "query-dsl-multi-term-rewrite", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-multi-term-rewrite.html", - "kind": "type_alias", "name": { "name": "MultiTermQueryRewrite", "namespace": "_types" @@ -45159,6 +45159,7 @@ }, "specLocation": "_types/common.ts#L81-L81", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45177,8 +45178,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -45262,6 +45262,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -45269,7 +45270,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -45382,6 +45382,7 @@ }, "specLocation": "_types/common.ts#L64-L64", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45400,14 +45401,13 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "docId": "modules-node", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/modules-node.html", - "kind": "type_alias", "name": { "name": "NodeName", "namespace": "_types" @@ -45474,8 +45474,8 @@ "specLocation": "_types/Node.ts#L77-L95" }, { - "description": "* @doc_id node-roles", "kind": "type_alias", + "description": "* @doc_id node-roles", "name": { "name": "NodeRoles", "namespace": "_types" @@ -45558,6 +45558,7 @@ "name": "allocation_id", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -45565,7 +45566,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -45580,6 +45580,7 @@ "name": "recovery_source", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -45587,7 +45588,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -45613,6 +45613,7 @@ "name": "relocating_node", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45628,8 +45629,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -45647,8 +45647,8 @@ "specLocation": "_types/Node.ts#L60-L71" }, { - "description": "Contains statistics about the number of nodes selected by the request.", "kind": "interface", + "description": "Contains statistics about the number of nodes selected by the request.", "name": { "name": "NodeStatistics", "namespace": "_types" @@ -45773,6 +45773,7 @@ }, "specLocation": "_types/Numeric.ts#L28-L28", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -45788,8 +45789,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -46083,13 +46083,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "RetrieverBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "RRFRetriever", "namespace": "_types" @@ -46215,6 +46215,7 @@ "name": "throttle_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -46224,7 +46225,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -46235,8 +46235,8 @@ "specLocation": "_types/Stats.ts#L228-L233" }, { - "esQuirk": "This is a boolean that evolved into an enum. ES also accepts plain booleans for true and false.", "kind": "enum", + "esQuirk": "This is a boolean that evolved into an enum. ES also accepts plain booleans for true and false.", "members": [ { "name": "true" @@ -46276,6 +46276,7 @@ "name": "external_total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -46285,7 +46286,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -46329,6 +46329,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -46338,7 +46339,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -46385,6 +46385,7 @@ "specLocation": "_types/Node.ts#L73-L75" }, { + "kind": "interface", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -46396,7 +46397,6 @@ } } ], - "kind": "interface", "name": { "name": "RequestBase", "namespace": "_types" @@ -46539,6 +46539,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -46557,8 +46558,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -46629,13 +46629,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "RankBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "RrfRank", "namespace": "_types" @@ -46669,6 +46669,7 @@ "specLocation": "_types/Rank.ts#L32-L37" }, { + "kind": "type_alias", "codegenNames": [ "long", "double", @@ -46677,13 +46678,13 @@ "null" ], "description": "A scalar value.", - "kind": "type_alias", "name": { "name": "ScalarValue", "namespace": "_types" }, "specLocation": "_types/common.ts#L39-L43", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -46720,8 +46721,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -46781,6 +46781,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -46788,7 +46789,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -46812,6 +46812,7 @@ "name": "options", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -46819,7 +46820,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -46867,8 +46867,8 @@ "specLocation": "_types/Scripting.ts#L99-L102" }, { - "isOpen": true, "kind": "enum", + "isOpen": true, "members": [ { "description": "Painless scripting language, purpose-built for Elasticsearch.", @@ -47000,6 +47000,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -47007,7 +47008,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -47062,6 +47062,7 @@ }, "specLocation": "_types/common.ts#L56-L56", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -47080,8 +47081,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -47117,6 +47117,7 @@ "name": "fetch_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -47126,7 +47127,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -47181,6 +47181,7 @@ "name": "query_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -47190,7 +47191,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -47234,6 +47234,7 @@ "name": "scroll_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -47243,7 +47244,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -47287,6 +47287,7 @@ "name": "suggest_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -47296,7 +47297,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -47318,6 +47318,7 @@ "name": "groups", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -47325,7 +47326,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -47437,6 +47437,7 @@ "name": "file_sizes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -47444,7 +47445,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -47926,18 +47926,19 @@ "specLocation": "_types/SlicedScroll.ts#L23-L27" }, { + "kind": "type_alias", "codegenNames": [ "value", "computed" ], "description": "Slices configuration used to parallelize a process.", - "kind": "type_alias", "name": { "name": "Slices", "namespace": "_types" }, "specLocation": "_types/common.ts#L364-L369", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -47953,8 +47954,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -47979,6 +47979,7 @@ }, "specLocation": "_types/sort.ts#L105-L105", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -47997,22 +47998,22 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "codegenNames": [ "field", "options" ], - "kind": "type_alias", "name": { "name": "SortCombinations", "namespace": "_types" }, "specLocation": "_types/sort.ts#L99-L103", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -48028,8 +48029,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -48058,6 +48058,7 @@ "specLocation": "_types/sort.ts#L109-L118" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -48091,7 +48092,6 @@ ], "docId": "sort-search-results", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/sort-search-results.html", - "kind": "interface", "name": { "name": "SortOptions", "namespace": "_types" @@ -48184,13 +48184,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "RetrieverBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "StandardRetriever", "namespace": "_types" @@ -48376,6 +48376,7 @@ "name": "options", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -48383,7 +48384,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -48432,8 +48432,8 @@ "specLocation": "_types/common.ts#L282-L295" }, { - "description": "The suggestion name as returned from the server. Depending whether typed_keys is specified this could come back\nin the form of `name#type` instead of simply `name`", "kind": "type_alias", + "description": "The suggestion name as returned from the server. Depending whether typed_keys is specified this could come back\nin the form of `name#type` instead of simply `name`", "name": { "name": "SuggestionName", "namespace": "_types" @@ -48509,6 +48509,7 @@ }, "specLocation": "_types/common.ts#L132-L132", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -48524,8 +48525,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -48586,8 +48586,8 @@ "specLocation": "_types/common.ts#L297-L303" }, { - "description": "Time of day, expressed as HH:MM:SS", "kind": "type_alias", + "description": "Time of day, expressed as HH:MM:SS", "name": { "name": "TimeOfDay", "namespace": "_types" @@ -48870,8 +48870,8 @@ } }, { - "description": "Time unit for fractional milliseconds", "kind": "type_alias", + "description": "Time unit for fractional milliseconds", "name": { "name": "UnitFloatMillis", "namespace": "_types" @@ -48886,8 +48886,8 @@ } }, { - "description": "Time unit for milliseconds", "kind": "type_alias", + "description": "Time unit for milliseconds", "name": { "name": "UnitMillis", "namespace": "_types" @@ -48902,8 +48902,8 @@ } }, { - "description": "Time unit for nanoseconds", "kind": "type_alias", + "description": "Time unit for nanoseconds", "name": { "name": "UnitNanos", "namespace": "_types" @@ -48918,8 +48918,8 @@ } }, { - "description": "Time unit for seconds", "kind": "type_alias", + "description": "Time unit for seconds", "name": { "name": "UnitSeconds", "namespace": "_types" @@ -49035,17 +49035,18 @@ "specLocation": "_types/common.ts#L305-L309" }, { + "kind": "type_alias", "codegenNames": [ "count", "option" ], - "kind": "type_alias", "name": { "name": "WaitForActiveShards", "namespace": "_types" }, "specLocation": "_types/common.ts#L142-L143", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -49061,8 +49062,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -49137,6 +49137,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -49146,7 +49147,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -49396,6 +49396,7 @@ } }, { + "kind": "interface", "inherits": { "generics": [ { @@ -49411,7 +49412,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AdjacencyMatrixAggregate", "namespace": "_types.aggregations" @@ -49421,13 +49421,13 @@ "variantName": "adjacency_matrix" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AdjacencyMatrixAggregation", "namespace": "_types.aggregations" @@ -49438,6 +49438,7 @@ "name": "filters", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -49445,7 +49446,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -49472,6 +49472,7 @@ "specLocation": "_types/aggregations/bucket.ts#L55-L65" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -49481,7 +49482,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AdjacencyMatrixBucket", "namespace": "_types.aggregations" @@ -49509,6 +49509,7 @@ }, "specLocation": "_types/aggregations/Aggregate.ts#L38-L123", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -49993,8 +49994,7 @@ "namespace": "_types.aggregations" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "external_tag", @@ -50030,8 +50030,10 @@ }, "specLocation": "_types/aggregations/bucket.ts#L983-L985", "type": { + "kind": "union_of", "items": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -50039,7 +50041,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -50052,6 +50053,7 @@ { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -50059,7 +50061,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -50070,8 +50071,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -50099,6 +50099,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -50106,7 +50107,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -51284,6 +51284,7 @@ "name": "value", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -51299,8 +51300,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -51318,6 +51318,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L160-L164" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -51333,7 +51334,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AutoDateHistogramAggregate", "namespace": "_types.aggregations" @@ -51355,13 +51355,13 @@ "variantName": "auto_date_histogram" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AutoDateHistogramAggregation", "namespace": "_types.aggregations" @@ -51444,6 +51444,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -51451,7 +51452,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -51485,13 +51485,13 @@ "specLocation": "_types/aggregations/bucket.ts#L67-L102" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AverageAggregation", "namespace": "_types.aggregations" @@ -51500,13 +51500,13 @@ "specLocation": "_types/aggregations/metric.ts#L55-L55" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AverageBucketAggregation", "namespace": "_types.aggregations" @@ -51515,13 +51515,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L78-L78" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "AvgAggregate", "namespace": "_types.aggregations" @@ -51531,13 +51531,13 @@ "variantName": "avg" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BoxPlotAggregate", "namespace": "_types.aggregations" @@ -51702,13 +51702,13 @@ "variantName": "boxplot" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BoxplotAggregation", "namespace": "_types.aggregations" @@ -51730,6 +51730,7 @@ "specLocation": "_types/aggregations/metric.ts#L57-L62" }, { + "kind": "interface", "description": "Base type for bucket aggregations. These aggregations also accept sub-aggregations.", "inherits": { "type": { @@ -51737,7 +51738,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" @@ -51746,6 +51746,7 @@ "specLocation": "_types/aggregations/bucket.ts#L48-L53" }, { + "kind": "interface", "description": "A sibling pipeline aggregation which executes a correlation function on the configured sibling multi-bucket aggregation.", "inherits": { "type": { @@ -51753,7 +51754,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketCorrelationAggregation", "namespace": "_types.aggregations" @@ -51871,6 +51871,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L149-L167" }, { + "kind": "interface", "description": "A sibling pipeline aggregation which executes a two sample Kolmogorov–Smirnov test (referred\nto as a \"K-S test\" from now on) against a provided distribution, and the distribution implied\nby the documents counts in the configured sibling aggregation. Specifically, for some metric,\nassuming that the percentile intervals of the metric are known beforehand or have been computed\nby an aggregation, then one would use range aggregation for the sibling to compute the p-value\nof the distribution difference between the metric and the restriction of that metric to a subset\nof the documents. A natural use case is if the sibling aggregation range aggregation nested in a\nterms aggregation, in which case one compares the overall distribution of metric to its restriction\nto each term.", "inherits": { "type": { @@ -51878,7 +51879,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketKsAggregation", "namespace": "_types.aggregations" @@ -51930,13 +51930,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L94-L127" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketMetricValueAggregate", "namespace": "_types.aggregations" @@ -51961,13 +51961,13 @@ "variantName": "bucket_metric_value" }, { + "kind": "interface", "inherits": { "type": { "name": "Aggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketPathAggregation", "namespace": "_types.aggregations" @@ -51991,13 +51991,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L31-L37" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketScriptAggregation", "namespace": "_types.aggregations" @@ -52019,13 +52019,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L80-L85" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketSelectorAggregation", "namespace": "_types.aggregations" @@ -52047,13 +52047,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L87-L92" }, { + "kind": "interface", "inherits": { "type": { "name": "Aggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "BucketSortAggregation", "namespace": "_types.aggregations" @@ -52116,6 +52116,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L169-L190" }, { + "kind": "type_alias", "codegenNames": [ "keyed", "array" @@ -52127,15 +52128,16 @@ "namespace": "_types.aggregations.Buckets" } ], - "kind": "type_alias", "name": { "name": "Buckets", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/Aggregate.ts#L316-L325", "type": { + "kind": "union_of", "items": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -52143,7 +52145,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -52163,24 +52164,24 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "codegenNames": [ "single", "array", "dict" ], "description": "Buckets path can be expressed in different ways, and an aggregation may accept some or all of these\nforms depending on its type. Please refer to each aggregation's documentation to know what buckets\npath forms they accept.", - "kind": "type_alias", "name": { "name": "BucketsPath", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/pipeline.ts#L53-L59", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -52200,6 +52201,7 @@ } }, { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -52207,7 +52209,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -52217,8 +52218,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -52280,13 +52280,13 @@ "specLocation": "_types/aggregations/bucket.ts#L251-L268" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CardinalityAggregate", "namespace": "_types.aggregations" @@ -52308,13 +52308,13 @@ "variantName": "cardinality" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CardinalityAggregation", "namespace": "_types.aggregations" @@ -52390,6 +52390,7 @@ "specLocation": "_types/aggregations/metric.ts#L64-L85" }, { + "kind": "interface", "description": "A multi-bucket aggregation that groups semi-structured text into buckets. Each text\nfield is re-analyzed using a custom analyzer. The resulting tokens are then categorized\ncreating buckets of similarly formatted text values. This aggregation works best with machine\ngenerated text like system logs. Only the first 100 analyzed tokens are used to categorize the text.", "inherits": { "type": { @@ -52397,7 +52398,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CategorizeTextAggregation", "namespace": "_types.aggregations" @@ -52534,17 +52534,18 @@ "specLocation": "_types/aggregations/bucket.ts#L1045-L1109" }, { + "kind": "type_alias", "codegenNames": [ "builtin", "custom" ], - "kind": "type_alias", "name": { "name": "CategorizeTextAnalyzer", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/bucket.ts#L1111-L1114", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -52560,8 +52561,7 @@ "namespace": "_types.aggregations" } } - ], - "kind": "union_of" + ] } }, { @@ -52599,6 +52599,7 @@ "specLocation": "_types/aggregations/bucket.ts#L737-L746" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -52608,7 +52609,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ChildrenAggregate", "namespace": "_types.aggregations" @@ -52618,13 +52618,13 @@ "variantName": "children" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ChildrenAggregation", "namespace": "_types.aggregations" @@ -52646,6 +52646,7 @@ "specLocation": "_types/aggregations/bucket.ts#L113-L118" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -52661,7 +52662,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeAggregate", "namespace": "_types.aggregations" @@ -52690,6 +52690,7 @@ }, "specLocation": "_types/aggregations/bucket.ts#L120-L120", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -52697,7 +52698,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -52709,13 +52709,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeAggregation", "namespace": "_types.aggregations" @@ -52753,6 +52753,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -52760,7 +52761,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -52912,6 +52912,7 @@ "specLocation": "_types/aggregations/bucket.ts#L140-L157" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -52921,7 +52922,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeBucket", "namespace": "_types.aggregations" @@ -52942,13 +52942,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L629-L631" }, { + "kind": "interface", "inherits": { "type": { "name": "CompositeAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeDateHistogramAggregation", "namespace": "_types.aggregations" @@ -53015,13 +53015,13 @@ "specLocation": "_types/aggregations/bucket.ts#L176-L184" }, { + "kind": "interface", "inherits": { "type": { "name": "CompositeAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeGeoTileGridAggregation", "namespace": "_types.aggregations" @@ -53053,13 +53053,13 @@ "specLocation": "_types/aggregations/bucket.ts#L186-L189" }, { + "kind": "interface", "inherits": { "type": { "name": "CompositeAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeHistogramAggregation", "namespace": "_types.aggregations" @@ -53080,13 +53080,13 @@ "specLocation": "_types/aggregations/bucket.ts#L172-L174" }, { + "kind": "interface", "inherits": { "type": { "name": "CompositeAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CompositeTermsAggregation", "namespace": "_types.aggregations" @@ -53095,6 +53095,7 @@ "specLocation": "_types/aggregations/bucket.ts#L170-L170" }, { + "kind": "interface", "description": "Result of the `cumulative_cardinality` aggregation", "inherits": { "type": { @@ -53102,7 +53103,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CumulativeCardinalityAggregate", "namespace": "_types.aggregations" @@ -53135,13 +53135,13 @@ "variantName": "simple_long_value" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CumulativeCardinalityAggregation", "namespace": "_types.aggregations" @@ -53150,13 +53150,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L192-L192" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "CumulativeSumAggregation", "namespace": "_types.aggregations" @@ -53214,6 +53214,7 @@ "specLocation": "_types/aggregations/bucket.ts#L1116-L1120" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -53229,7 +53230,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DateHistogramAggregate", "namespace": "_types.aggregations" @@ -53239,13 +53239,13 @@ "variantName": "date_histogram" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DateHistogramAggregation", "namespace": "_types.aggregations" @@ -53268,6 +53268,7 @@ "name": "extended_bounds", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -53277,7 +53278,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ExtendedBounds", "namespace": "_types.aggregations" @@ -53289,6 +53289,7 @@ "name": "hard_bounds", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -53298,7 +53299,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ExtendedBounds", "namespace": "_types.aggregations" @@ -53408,6 +53408,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -53415,7 +53416,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -53461,6 +53461,7 @@ "specLocation": "_types/aggregations/bucket.ts#L191-L249" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -53470,7 +53471,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DateHistogramBucket", "namespace": "_types.aggregations" @@ -53491,6 +53491,7 @@ "name": "key", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -53500,7 +53501,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -53511,6 +53511,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L353-L356" }, { + "kind": "interface", "description": "Result of a `date_range` aggregation. Same format as a for a `range` aggregation: `from` and `to`\nin `buckets` are milliseconds since the Epoch, represented as a floating point number.", "inherits": { "type": { @@ -53518,7 +53519,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DateRangeAggregate", "namespace": "_types.aggregations" @@ -53528,13 +53528,13 @@ "variantName": "date_range" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DateRangeAggregation", "namespace": "_types.aggregations" @@ -53665,13 +53665,13 @@ "specLocation": "_types/aggregations/bucket.ts#L307-L320" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DerivativeAggregate", "namespace": "_types.aggregations" @@ -53704,13 +53704,13 @@ "variantName": "derivative" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DerivativeAggregation", "namespace": "_types.aggregations" @@ -53719,13 +53719,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L196-L196" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DiversifiedSamplerAggregation", "namespace": "_types.aggregations" @@ -53797,6 +53797,7 @@ "specLocation": "_types/aggregations/bucket.ts#L322-L343" }, { + "kind": "interface", "description": "Result of a `terms` aggregation when the field is some kind of decimal number like a float, double, or distance.", "inherits": { "generics": [ @@ -53813,7 +53814,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DoubleTermsAggregate", "namespace": "_types.aggregations" @@ -53823,6 +53823,7 @@ "variantName": "dterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -53832,7 +53833,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "DoubleTermsBucket", "namespace": "_types.aggregations" @@ -53885,13 +53885,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L267-L269" }, { + "kind": "interface", "inherits": { "type": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "EwmaMovingAverageAggregation", "namespace": "_types.aggregations" @@ -53920,13 +53920,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L252-L255" }, { + "kind": "interface", "generics": [ { "name": "T", "namespace": "_types.aggregations.ExtendedBounds" } ], - "kind": "interface", "name": { "name": "ExtendedBounds", "namespace": "_types.aggregations" @@ -53960,13 +53960,13 @@ "specLocation": "_types/aggregations/bucket.ts#L491-L500" }, { + "kind": "interface", "inherits": { "type": { "name": "StatsAggregate", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ExtendedStatsAggregate", "namespace": "_types.aggregations" @@ -53976,6 +53976,7 @@ "name": "sum_of_squares", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -53991,14 +53992,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "variance", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54014,14 +54015,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "variance_population", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54037,14 +54038,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "variance_sampling", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54060,14 +54061,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "std_deviation", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54083,14 +54084,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "std_deviation_population", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54106,14 +54107,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "std_deviation_sampling", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54129,8 +54130,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -54215,13 +54215,13 @@ "variantName": "extended_stats" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ExtendedStatsAggregation", "namespace": "_types.aggregations" @@ -54243,13 +54243,13 @@ "specLocation": "_types/aggregations/metric.ts#L101-L106" }, { + "kind": "interface", "inherits": { "type": { "name": "ExtendedStatsAggregate", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ExtendedStatsBucketAggregate", "namespace": "_types.aggregations" @@ -54259,13 +54259,13 @@ "variantName": "extended_stats_bucket" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ExtendedStatsBucketAggregation", "namespace": "_types.aggregations" @@ -54287,18 +54287,19 @@ "specLocation": "_types/aggregations/pipeline.ts#L198-L203" }, { + "kind": "type_alias", "codegenNames": [ "expr", "value" ], "description": "A date range limit, represented either as a DateMath expression or a number expressed\naccording to the target field's precision.", - "kind": "type_alias", "name": { "name": "FieldDateMath", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/bucket.ts#L298-L305", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -54314,11 +54315,11 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -54328,7 +54329,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FilterAggregate", "namespace": "_types.aggregations" @@ -54338,6 +54338,7 @@ "variantName": "filter" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -54353,7 +54354,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FiltersAggregate", "namespace": "_types.aggregations" @@ -54363,13 +54363,13 @@ "variantName": "filters" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FiltersAggregation", "namespace": "_types.aggregations" @@ -54380,6 +54380,7 @@ "name": "filters", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -54389,7 +54390,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Buckets", "namespace": "_types.aggregations" @@ -54438,6 +54438,7 @@ "specLocation": "_types/aggregations/bucket.ts#L360-L380" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -54447,7 +54448,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FiltersBucket", "namespace": "_types.aggregations" @@ -54456,13 +54456,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L575-L575" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" @@ -54483,13 +54483,13 @@ "specLocation": "_types/aggregations/metric.ts#L47-L49" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FormattableMetricAggregation", "namespace": "_types.aggregations" @@ -54510,6 +54510,7 @@ "specLocation": "_types/aggregations/metric.ts#L51-L53" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -54525,7 +54526,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FrequentItemSetsAggregate", "namespace": "_types.aggregations" @@ -54611,6 +54611,7 @@ "specLocation": "_types/aggregations/bucket.ts#L1167-L1191" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -54620,7 +54621,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "FrequentItemSetsBucket", "namespace": "_types.aggregations" @@ -54630,6 +54630,7 @@ "name": "key", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -54637,7 +54638,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -54733,13 +54733,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L61-L76" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoBoundsAggregate", "namespace": "_types.aggregations" @@ -54761,13 +54761,13 @@ "variantName": "geo_bounds" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoBoundsAggregation", "namespace": "_types.aggregations" @@ -54790,13 +54790,13 @@ "specLocation": "_types/aggregations/metric.ts#L108-L114" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoCentroidAggregate", "namespace": "_types.aggregations" @@ -54829,13 +54829,13 @@ "variantName": "geo_centroid" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoCentroidAggregation", "namespace": "_types.aggregations" @@ -54867,6 +54867,7 @@ "specLocation": "_types/aggregations/metric.ts#L116-L119" }, { + "kind": "interface", "description": "Result of a `geo_distance` aggregation. The unit for `from` and `to` is meters by default.", "inherits": { "type": { @@ -54874,7 +54875,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoDistanceAggregate", "namespace": "_types.aggregations" @@ -54884,13 +54884,13 @@ "variantName": "geo_distance" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoDistanceAggregation", "namespace": "_types.aggregations" @@ -54965,6 +54965,7 @@ "specLocation": "_types/aggregations/bucket.ts#L382-L405" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -54980,7 +54981,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoHashGridAggregate", "namespace": "_types.aggregations" @@ -54990,13 +54990,13 @@ "variantName": "geohash_grid" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoHashGridAggregation", "namespace": "_types.aggregations" @@ -55068,6 +55068,7 @@ "specLocation": "_types/aggregations/bucket.ts#L407-L432" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -55077,7 +55078,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoHashGridBucket", "namespace": "_types.aggregations" @@ -55098,6 +55098,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L514-L516" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -55113,7 +55114,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoHexGridAggregate", "namespace": "_types.aggregations" @@ -55123,6 +55123,7 @@ "variantName": "geohex_grid" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -55132,7 +55133,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoHexGridBucket", "namespace": "_types.aggregations" @@ -55153,13 +55153,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L529-L531" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoLineAggregate", "namespace": "_types.aggregations" @@ -55315,6 +55315,7 @@ "specLocation": "_types/aggregations/metric.ts#L148-L153" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -55330,7 +55331,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoTileGridAggregate", "namespace": "_types.aggregations" @@ -55340,13 +55340,13 @@ "variantName": "geotile_grid" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoTileGridAggregation", "namespace": "_types.aggregations" @@ -55418,6 +55418,7 @@ "specLocation": "_types/aggregations/bucket.ts#L434-L460" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -55427,7 +55428,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeoTileGridBucket", "namespace": "_types.aggregations" @@ -55448,13 +55448,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L522-L524" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GeohexGridAggregation", "namespace": "_types.aggregations" @@ -55526,6 +55526,7 @@ "specLocation": "_types/aggregations/bucket.ts#L462-L487" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -55535,7 +55536,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GlobalAggregate", "namespace": "_types.aggregations" @@ -55545,13 +55545,13 @@ "variantName": "global" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "GlobalAggregation", "namespace": "_types.aggregations" @@ -55604,13 +55604,13 @@ "specLocation": "_types/aggregations/metric.ts#L216-L221" }, { + "kind": "interface", "inherits": { "type": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HdrPercentileRanksAggregate", "namespace": "_types.aggregations" @@ -55620,13 +55620,13 @@ "variantName": "hdr_percentile_ranks" }, { + "kind": "interface", "inherits": { "type": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HdrPercentilesAggregate", "namespace": "_types.aggregations" @@ -55636,6 +55636,7 @@ "variantName": "hdr_percentiles" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -55651,7 +55652,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HistogramAggregate", "namespace": "_types.aggregations" @@ -55661,13 +55661,13 @@ "variantName": "histogram" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HistogramAggregation", "namespace": "_types.aggregations" @@ -55678,6 +55678,7 @@ "name": "extended_bounds", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -55687,7 +55688,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ExtendedBounds", "namespace": "_types.aggregations" @@ -55699,6 +55699,7 @@ "name": "hard_bounds", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -55708,7 +55709,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ExtendedBounds", "namespace": "_types.aggregations" @@ -55826,6 +55826,7 @@ "specLocation": "_types/aggregations/bucket.ts#L502-L548" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -55835,7 +55836,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HistogramBucket", "namespace": "_types.aggregations" @@ -55899,13 +55899,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L271-L274" }, { + "kind": "interface", "inherits": { "type": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HoltMovingAverageAggregation", "namespace": "_types.aggregations" @@ -56010,13 +56010,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L275-L282" }, { + "kind": "interface", "inherits": { "type": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "HoltWintersMovingAverageAggregation", "namespace": "_types.aggregations" @@ -56063,6 +56063,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L283-L286" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -56096,7 +56097,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "InferenceAggregate", "namespace": "_types.aggregations" @@ -56157,13 +56157,13 @@ "variantName": "inference" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "InferenceAggregation", "namespace": "_types.aggregations" @@ -56355,6 +56355,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L679-L683" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -56370,7 +56371,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpPrefixAggregate", "namespace": "_types.aggregations" @@ -56380,13 +56380,13 @@ "variantName": "ip_prefix" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpPrefixAggregation", "namespace": "_types.aggregations" @@ -56471,6 +56471,7 @@ "specLocation": "_types/aggregations/bucket.ts#L1122-L1151" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -56480,7 +56481,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpPrefixBucket", "namespace": "_types.aggregations" @@ -56534,6 +56534,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L636-L641" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -56549,7 +56550,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpRangeAggregate", "namespace": "_types.aggregations" @@ -56559,13 +56559,13 @@ "variantName": "ip_range" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpRangeAggregation", "namespace": "_types.aggregations" @@ -56613,6 +56613,7 @@ "name": "from", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -56628,8 +56629,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -56649,6 +56649,7 @@ "name": "to", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -56664,14 +56665,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], "specLocation": "_types/aggregations/bucket.ts#L561-L574" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -56681,7 +56682,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "IpRangeBucket", "namespace": "_types.aggregations" @@ -56731,6 +56731,7 @@ }, "specLocation": "_types/aggregations/Aggregate.ts#L158-L158", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -56738,9 +56739,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -56763,19 +56764,18 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } }, { + "kind": "interface", "inherits": { "type": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "LinearMovingAverageAggregation", "namespace": "_types.aggregations" @@ -56804,6 +56804,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L242-L245" }, { + "kind": "interface", "description": "Result of the `rare_terms` aggregation when the field is some kind of whole number like a integer, long, or a date.", "inherits": { "generics": [ @@ -56820,7 +56821,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "LongRareTermsAggregate", "namespace": "_types.aggregations" @@ -56830,6 +56830,7 @@ "variantName": "lrareterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -56839,7 +56840,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "LongRareTermsBucket", "namespace": "_types.aggregations" @@ -56871,6 +56871,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L440-L443" }, { + "kind": "interface", "description": "Result of a `terms` aggregation when the field is some kind of whole number like a integer, long, or a date.", "inherits": { "generics": [ @@ -56887,7 +56888,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "LongTermsAggregate", "namespace": "_types.aggregations" @@ -56897,6 +56897,7 @@ "variantName": "lterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -56906,7 +56907,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "LongTermsBucket", "namespace": "_types.aggregations" @@ -56938,13 +56938,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L408-L411" }, { + "kind": "interface", "inherits": { "type": { "name": "Aggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MatrixAggregation", "namespace": "_types.aggregations" @@ -56967,6 +56967,7 @@ "name": "missing", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -56974,7 +56975,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -56989,13 +56989,13 @@ "specLocation": "_types/aggregations/matrix.ts#L26-L36" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MatrixStatsAggregate", "namespace": "_types.aggregations" @@ -57031,13 +57031,13 @@ "variantName": "matrix_stats" }, { + "kind": "interface", "inherits": { "type": { "name": "MatrixAggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MatrixStatsAggregation", "namespace": "_types.aggregations" @@ -57136,6 +57136,7 @@ "name": "covariance", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -57143,7 +57144,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -57158,6 +57158,7 @@ "name": "correlation", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -57165,7 +57166,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -57180,13 +57180,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L770-L779" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MaxAggregate", "namespace": "_types.aggregations" @@ -57196,13 +57196,13 @@ "variantName": "max" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MaxAggregation", "namespace": "_types.aggregations" @@ -57211,13 +57211,13 @@ "specLocation": "_types/aggregations/metric.ts#L162-L162" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MaxBucketAggregation", "namespace": "_types.aggregations" @@ -57226,13 +57226,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L224-L224" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MedianAbsoluteDeviationAggregate", "namespace": "_types.aggregations" @@ -57242,13 +57242,13 @@ "variantName": "median_absolute_deviation" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MedianAbsoluteDeviationAggregation", "namespace": "_types.aggregations" @@ -57316,13 +57316,13 @@ "specLocation": "_types/aggregations/metric.ts#L34-L45" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MinAggregate", "namespace": "_types.aggregations" @@ -57332,13 +57332,13 @@ "variantName": "min" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MinAggregation", "namespace": "_types.aggregations" @@ -57347,13 +57347,13 @@ "specLocation": "_types/aggregations/metric.ts#L172-L172" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MinBucketAggregation", "namespace": "_types.aggregations" @@ -57397,6 +57397,7 @@ }, "specLocation": "_types/aggregations/AggregationContainer.ts#L516-L516", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -57426,11 +57427,11 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -57440,7 +57441,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MissingAggregate", "namespace": "_types.aggregations" @@ -57450,13 +57450,13 @@ "variantName": "missing" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MissingAggregation", "namespace": "_types.aggregations" @@ -57515,6 +57515,7 @@ }, "specLocation": "_types/aggregations/pipeline.ts#L228-L234", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -57551,8 +57552,7 @@ "namespace": "_types.aggregations" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -57560,13 +57560,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" @@ -57609,13 +57609,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L236-L240" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MovingFunctionAggregation", "namespace": "_types.aggregations" @@ -57662,13 +57662,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L288-L303" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MovingPercentilesAggregation", "namespace": "_types.aggregations" @@ -57714,6 +57714,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L305-L317" }, { + "kind": "interface", "generics": [ { "name": "TBucket", @@ -57726,7 +57727,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MultiBucketAggregateBase", "namespace": "_types.aggregations" @@ -57736,6 +57736,7 @@ "name": "buckets", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -57745,7 +57746,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Buckets", "namespace": "_types.aggregations" @@ -57756,6 +57756,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L327-L329" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -57788,7 +57789,6 @@ } ], "description": "Base type for multi-bucket aggregation results that can hold sub-aggregations results.", - "kind": "interface", "name": { "name": "MultiBucketBase", "namespace": "_types.aggregations" @@ -57843,6 +57843,7 @@ "specLocation": "_types/aggregations/bucket.ts#L626-L636" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -57858,7 +57859,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MultiTermsAggregate", "namespace": "_types.aggregations" @@ -57868,13 +57868,13 @@ "variantName": "multi_terms" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MultiTermsAggregation", "namespace": "_types.aggregations" @@ -57988,6 +57988,7 @@ "specLocation": "_types/aggregations/bucket.ts#L584-L624" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -57997,7 +57998,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "MultiTermsBucket", "namespace": "_types.aggregations" @@ -58077,6 +58077,7 @@ "specLocation": "_types/aggregations/bucket.ts#L755-L764" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -58086,7 +58087,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "NestedAggregate", "namespace": "_types.aggregations" @@ -58096,13 +58096,13 @@ "variantName": "nested" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "NestedAggregation", "namespace": "_types.aggregations" @@ -58124,13 +58124,13 @@ "specLocation": "_types/aggregations/bucket.ts#L638-L643" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "NormalizeAggregation", "namespace": "_types.aggregations" @@ -58187,6 +58187,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L326-L352" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -58196,7 +58197,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ParentAggregate", "namespace": "_types.aggregations" @@ -58206,13 +58206,13 @@ "variantName": "parent" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ParentAggregation", "namespace": "_types.aggregations" @@ -58243,13 +58243,13 @@ "specLocation": "_types/aggregations/bucket.ts#L766-L766" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PercentileRanksAggregation", "namespace": "_types.aggregations" @@ -58273,6 +58273,7 @@ "name": "values", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -58291,8 +58292,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -58323,17 +58323,18 @@ "specLocation": "_types/aggregations/metric.ts#L174-L193" }, { + "kind": "type_alias", "codegenNames": [ "keyed", "array" ], - "kind": "type_alias", "name": { "name": "Percentiles", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/Aggregate.ts#L150-L151", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -58352,18 +58353,17 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" @@ -58384,13 +58384,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L146-L148" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PercentilesAggregation", "namespace": "_types.aggregations" @@ -58452,13 +58452,13 @@ "specLocation": "_types/aggregations/metric.ts#L195-L214" }, { + "kind": "interface", "inherits": { "type": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PercentilesBucketAggregate", "namespace": "_types.aggregations" @@ -58468,13 +58468,13 @@ "variantName": "percentiles_bucket" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PercentilesBucketAggregation", "namespace": "_types.aggregations" @@ -58499,13 +58499,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L354-L359" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketPathAggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" @@ -58542,6 +58542,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L39-L51" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -58557,7 +58558,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RangeAggregate", "namespace": "_types.aggregations" @@ -58567,13 +58567,13 @@ "variantName": "range" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RangeAggregation", "namespace": "_types.aggregations" @@ -58656,6 +58656,7 @@ "specLocation": "_types/aggregations/bucket.ts#L652-L672" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -58665,7 +58666,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RangeBucket", "namespace": "_types.aggregations" @@ -58731,13 +58731,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L538-L545" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RareTermsAggregation", "namespace": "_types.aggregations" @@ -58832,13 +58832,13 @@ "specLocation": "_types/aggregations/bucket.ts#L689-L719" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RateAggregate", "namespace": "_types.aggregations" @@ -58871,13 +58871,13 @@ "variantName": "rate" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "RateAggregation", "namespace": "_types.aggregations" @@ -58930,6 +58930,7 @@ "specLocation": "_types/aggregations/metric.ts#L243-L252" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -58939,7 +58940,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ReverseNestedAggregate", "namespace": "_types.aggregations" @@ -58949,13 +58949,13 @@ "variantName": "reverse_nested" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ReverseNestedAggregation", "namespace": "_types.aggregations" @@ -58977,6 +58977,7 @@ "specLocation": "_types/aggregations/bucket.ts#L721-L727" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -58986,7 +58987,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SamplerAggregate", "namespace": "_types.aggregations" @@ -58996,13 +58996,13 @@ "variantName": "sampler" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SamplerAggregation", "namespace": "_types.aggregations" @@ -59068,13 +59068,13 @@ "specLocation": "_types/aggregations/bucket.ts#L768-L770" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ScriptedMetricAggregate", "namespace": "_types.aggregations" @@ -59092,13 +59092,13 @@ "variantName": "scripted_metric" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ScriptedMetricAggregation", "namespace": "_types.aggregations" @@ -59145,6 +59145,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -59152,7 +59153,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -59175,13 +59175,13 @@ "specLocation": "_types/aggregations/metric.ts#L254-L280" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SerialDifferencingAggregation", "namespace": "_types.aggregations" @@ -59203,6 +59203,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L361-L367" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -59218,7 +59219,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantLongTermsAggregate", "namespace": "_types.aggregations" @@ -59228,6 +59228,7 @@ "variantName": "siglterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -59237,7 +59238,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantLongTermsBucket", "namespace": "_types.aggregations" @@ -59269,6 +59269,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L601-L604" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -59284,7 +59285,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantStringTermsAggregate", "namespace": "_types.aggregations" @@ -59294,6 +59294,7 @@ "variantName": "sigsterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -59303,7 +59304,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantStringTermsBucket", "namespace": "_types.aggregations" @@ -59324,6 +59324,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L610-L612" }, { + "kind": "interface", "generics": [ { "name": "T", @@ -59345,7 +59346,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantTermsAggregateBase", "namespace": "_types.aggregations" @@ -59377,13 +59377,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L585-L590" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantTermsAggregation", "namespace": "_types.aggregations" @@ -59574,6 +59574,7 @@ "specLocation": "_types/aggregations/bucket.ts#L772-L836" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -59583,7 +59584,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantTermsBucketBase", "namespace": "_types.aggregations" @@ -59615,13 +59615,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L596-L599" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SignificantTextAggregation", "namespace": "_types.aggregations" @@ -59836,13 +59836,13 @@ "specLocation": "_types/aggregations/bucket.ts#L838-L910" }, { + "kind": "interface", "inherits": { "type": { "name": "MovingAverageAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SimpleMovingAverageAggregation", "namespace": "_types.aggregations" @@ -59871,13 +59871,13 @@ "specLocation": "_types/aggregations/pipeline.ts#L247-L250" }, { + "kind": "interface", "inherits": { "type": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SimpleValueAggregate", "namespace": "_types.aggregations" @@ -59887,6 +59887,7 @@ "variantName": "simple_value" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -59925,7 +59926,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SingleBucketAggregateBase", "namespace": "_types.aggregations" @@ -59946,13 +59946,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L475-L485" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SingleMetricAggregateBase", "namespace": "_types.aggregations" @@ -59963,6 +59963,7 @@ "name": "value", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -59978,8 +59979,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -60007,6 +60007,7 @@ "name": "upper", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60022,14 +60023,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "lower", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60045,14 +60046,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "upper_population", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60068,14 +60069,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "lower_population", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60091,14 +60092,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "upper_sampling", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60114,14 +60115,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "lower_sampling", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60137,8 +60138,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -60221,6 +60221,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L269-L276" }, { + "kind": "interface", "description": "Statistics aggregation result. `min`, `max` and `avg` are missing if there were no values to process\n(`count` is zero).", "inherits": { "type": { @@ -60228,7 +60229,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StatsAggregate", "namespace": "_types.aggregations" @@ -60249,6 +60249,7 @@ "name": "min", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60264,14 +60265,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "max", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60287,14 +60288,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "avg", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60310,8 +60311,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -60374,13 +60374,13 @@ "variantName": "stats" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StatsAggregation", "namespace": "_types.aggregations" @@ -60389,13 +60389,13 @@ "specLocation": "_types/aggregations/metric.ts#L282-L282" }, { + "kind": "interface", "inherits": { "type": { "name": "StatsAggregate", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StatsBucketAggregate", "namespace": "_types.aggregations" @@ -60405,13 +60405,13 @@ "variantName": "stats_bucket" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StatsBucketAggregation", "namespace": "_types.aggregations" @@ -60420,6 +60420,7 @@ "specLocation": "_types/aggregations/pipeline.ts#L369-L369" }, { + "kind": "interface", "description": "Result of the `rare_terms` aggregation when the field is a string.", "inherits": { "generics": [ @@ -60436,7 +60437,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringRareTermsAggregate", "namespace": "_types.aggregations" @@ -60446,6 +60446,7 @@ "variantName": "srareterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -60455,7 +60456,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringRareTermsBucket", "namespace": "_types.aggregations" @@ -60476,13 +60476,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L451-L453" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringStatsAggregate", "namespace": "_types.aggregations" @@ -60503,6 +60503,7 @@ "name": "min_length", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60518,14 +60519,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "max_length", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60541,14 +60542,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "avg_length", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60564,14 +60565,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "entropy", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60587,16 +60588,17 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "distribution", "required": false, "type": { + "kind": "union_of", "items": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -60604,7 +60606,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -60621,8 +60622,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -60663,13 +60663,13 @@ "variantName": "string_stats" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringStatsAggregation", "namespace": "_types.aggregations" @@ -60692,6 +60692,7 @@ "specLocation": "_types/aggregations/metric.ts#L284-L290" }, { + "kind": "interface", "description": "Result of a `terms` aggregation when the field is a string.", "inherits": { "generics": [ @@ -60708,7 +60709,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringTermsAggregate", "namespace": "_types.aggregations" @@ -60718,6 +60718,7 @@ "variantName": "sterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -60727,7 +60728,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "StringTermsBucket", "namespace": "_types.aggregations" @@ -60748,6 +60748,7 @@ "specLocation": "_types/aggregations/Aggregate.ts#L397-L399" }, { + "kind": "interface", "description": "Sum aggregation result. `value` is always present and is zero if there were no values to process.", "inherits": { "type": { @@ -60755,7 +60756,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SumAggregate", "namespace": "_types.aggregations" @@ -60765,13 +60765,13 @@ "variantName": "sum" }, { + "kind": "interface", "inherits": { "type": { "name": "FormatMetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SumAggregation", "namespace": "_types.aggregations" @@ -60780,13 +60780,13 @@ "specLocation": "_types/aggregations/metric.ts#L292-L292" }, { + "kind": "interface", "inherits": { "type": { "name": "PipelineAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "SumBucketAggregation", "namespace": "_types.aggregations" @@ -60817,13 +60817,13 @@ "specLocation": "_types/aggregations/metric.ts#L223-L228" }, { + "kind": "interface", "inherits": { "type": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TDigestPercentileRanksAggregate", "namespace": "_types.aggregations" @@ -60833,13 +60833,13 @@ "variantName": "tdigest_percentile_ranks" }, { + "kind": "interface", "inherits": { "type": { "name": "PercentilesAggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TDigestPercentilesAggregate", "namespace": "_types.aggregations" @@ -60849,13 +60849,13 @@ "variantName": "tdigest_percentiles" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TTestAggregate", "namespace": "_types.aggregations" @@ -60865,6 +60865,7 @@ "name": "value", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -60880,8 +60881,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -60900,13 +60900,13 @@ "variantName": "t_test" }, { + "kind": "interface", "inherits": { "type": { "name": "Aggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TTestAggregation", "namespace": "_types.aggregations" @@ -60975,6 +60975,7 @@ "specLocation": "_types/aggregations/metric.ts#L322-L335" }, { + "kind": "interface", "generics": [ { "name": "TBucket", @@ -60996,7 +60997,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TermsAggregateBase", "namespace": "_types.aggregations" @@ -61028,13 +61028,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L379-L384" }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TermsAggregation", "namespace": "_types.aggregations" @@ -61286,6 +61286,7 @@ "specLocation": "_types/aggregations/bucket.ts#L998-L1003" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -61295,7 +61296,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TermsBucketBase", "namespace": "_types.aggregations" @@ -61316,17 +61316,18 @@ "specLocation": "_types/aggregations/Aggregate.ts#L393-L395" }, { + "kind": "type_alias", "codegenNames": [ "regexp", "terms" ], - "kind": "type_alias", "name": { "name": "TermsExclude", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/bucket.ts#L1008-L1009", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -61345,23 +61346,23 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "type_alias", "codegenNames": [ "regexp", "terms", "partition" ], - "kind": "type_alias", "name": { "name": "TermsInclude", "namespace": "_types.aggregations" }, "specLocation": "_types/aggregations/bucket.ts#L1005-L1006", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -61387,8 +61388,7 @@ "namespace": "_types.aggregations" } } - ], - "kind": "union_of" + ] } }, { @@ -61471,13 +61471,13 @@ "specLocation": "_types/aggregations/metric.ts#L310-L320" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TopHitsAggregate", "namespace": "_types.aggregations" @@ -61487,12 +61487,12 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "user_defined_value" } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -61504,13 +61504,13 @@ "variantName": "top_hits" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TopHitsAggregation", "namespace": "_types.aggregations" @@ -61589,6 +61589,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -61596,7 +61597,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -61710,6 +61710,7 @@ "type": { "kind": "array_of", "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -61725,8 +61726,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } }, @@ -61734,6 +61734,7 @@ "name": "metrics", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -61741,9 +61742,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -61759,8 +61760,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } } @@ -61768,13 +61768,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L736-L740" }, { + "kind": "interface", "inherits": { "type": { "name": "AggregateBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TopMetricsAggregate", "namespace": "_types.aggregations" @@ -61799,13 +61799,13 @@ "variantName": "top_metrics" }, { + "kind": "interface", "inherits": { "type": { "name": "MetricAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "TopMetricsAggregation", "namespace": "_types.aggregations" @@ -61816,6 +61816,7 @@ "name": "metrics", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -61834,8 +61835,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -61889,6 +61889,7 @@ "specLocation": "_types/aggregations/metric.ts#L415-L420" }, { + "kind": "interface", "description": "Result of a `rare_terms` aggregation when the field is unmapped. `buckets` is always empty.", "inherits": { "generics": [ @@ -61905,7 +61906,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "UnmappedRareTermsAggregate", "namespace": "_types.aggregations" @@ -61915,6 +61915,7 @@ "variantName": "umrareterms" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -61924,7 +61925,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "UnmappedSamplerAggregate", "namespace": "_types.aggregations" @@ -61934,6 +61934,7 @@ "variantName": "unmapped_sampler" }, { + "kind": "interface", "description": "Result of the `significant_terms` aggregation on an unmapped field. `buckets` is always empty.", "inherits": { "generics": [ @@ -61950,7 +61951,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "UnmappedSignificantTermsAggregate", "namespace": "_types.aggregations" @@ -61960,6 +61960,7 @@ "variantName": "umsigterms" }, { + "kind": "interface", "description": "Result of a `terms` aggregation when the field is unmapped. `buckets` is always empty.", "inherits": { "generics": [ @@ -61976,7 +61977,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "UnmappedTermsAggregate", "namespace": "_types.aggregations" @@ -61986,6 +61986,7 @@ "variantName": "umterms" }, { + "kind": "interface", "description": "Value count aggregation result. `value` is always present.", "inherits": { "type": { @@ -61993,7 +61994,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ValueCountAggregate", "namespace": "_types.aggregations" @@ -62003,13 +62003,13 @@ "variantName": "value_count" }, { + "kind": "interface", "inherits": { "type": { "name": "FormattableMetricAggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ValueCountAggregation", "namespace": "_types.aggregations" @@ -62058,6 +62058,7 @@ "specLocation": "_types/aggregations/metric.ts#L424-L435" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -62073,7 +62074,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "VariableWidthHistogramAggregate", "namespace": "_types.aggregations" @@ -62153,6 +62153,7 @@ "specLocation": "_types/aggregations/bucket.ts#L1022-L1043" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -62162,7 +62163,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "VariableWidthHistogramBucket", "namespace": "_types.aggregations" @@ -62238,13 +62238,13 @@ "specLocation": "_types/aggregations/Aggregate.ts#L368-L375" }, { + "kind": "interface", "inherits": { "type": { "name": "Aggregation", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "WeightedAverageAggregation", "namespace": "_types.aggregations" @@ -62346,6 +62346,7 @@ "specLocation": "_types/aggregations/metric.ts#L453-L463" }, { + "kind": "interface", "description": "Weighted average aggregation result. `value` is missing if the weight was set to zero.", "inherits": { "type": { @@ -62353,7 +62354,6 @@ "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "WeightedAvgAggregate", "namespace": "_types.aggregations" @@ -62370,6 +62370,7 @@ }, "specLocation": "_types/analysis/analyzers.ts#L359-L413", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -62721,12 +62722,11 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] }, "variants": { - "defaultTag": "custom", "kind": "internal_tag", + "defaultTag": "custom", "nonExhaustive": true, "tag": "type" } @@ -62840,13 +62840,13 @@ "specLocation": "_types/analysis/analyzers.ts#L68-L73" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "AsciiFoldingTokenFilter", "namespace": "_types.analysis" @@ -62864,6 +62864,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -62873,7 +62874,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -63140,17 +63140,18 @@ "specLocation": "_types/analysis/analyzers.ts#L102-L107" }, { + "kind": "type_alias", "codegenNames": [ "name", "definition" ], - "kind": "type_alias", "name": { "name": "CharFilter", "namespace": "_types.analysis" }, "specLocation": "_types/analysis/char_filters.ts#L28-L30", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -63166,8 +63167,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] } }, { @@ -63199,6 +63199,7 @@ }, "specLocation": "_types/analysis/char_filters.ts#L32-L41", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -63235,8 +63236,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -63245,13 +63245,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "CharGroupTokenizer", "namespace": "_types.analysis" @@ -63374,13 +63374,13 @@ "specLocation": "_types/analysis/analyzers.ts#L115-L119" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "CommonGramsTokenFilter", "namespace": "_types.analysis" @@ -63445,13 +63445,13 @@ "specLocation": "_types/analysis/token_filters.ts#L175-L181" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "CompoundWordTokenFilterBase", "namespace": "_types.analysis" @@ -63541,13 +63541,13 @@ "specLocation": "_types/analysis/token_filters.ts#L44-L52" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "ConditionTokenFilter", "namespace": "_types.analysis" @@ -63608,6 +63608,7 @@ "name": "char_filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -63626,14 +63627,14 @@ } } } - ], - "kind": "union_of" + ] } }, { "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -63652,8 +63653,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -63852,13 +63852,13 @@ "specLocation": "_types/analysis/token_filters.ts#L62-L66" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "DelimitedPayloadTokenFilter", "namespace": "_types.analysis" @@ -63898,13 +63898,13 @@ "specLocation": "_types/analysis/token_filters.ts#L68-L72" }, { + "kind": "interface", "inherits": { "type": { "name": "CompoundWordTokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "DictionaryDecompounderTokenFilter", "namespace": "_types.analysis" @@ -63992,13 +63992,13 @@ "specLocation": "_types/analysis/token_filters.ts#L74-L77" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "EdgeNGramTokenFilter", "namespace": "_types.analysis" @@ -64049,6 +64049,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -64058,7 +64059,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -64069,13 +64069,13 @@ "specLocation": "_types/analysis/token_filters.ts#L79-L85" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "EdgeNGramTokenizer", "namespace": "_types.analysis" @@ -64140,13 +64140,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L31-L37" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "ElisionTokenFilter", "namespace": "_types.analysis" @@ -64189,6 +64189,7 @@ "name": "articles_case", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -64198,7 +64199,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -64387,13 +64387,13 @@ "specLocation": "_types/analysis/analyzers.ts#L37-L45" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "FingerprintTokenFilter", "namespace": "_types.analysis" @@ -64743,13 +64743,13 @@ "specLocation": "_types/analysis/analyzers.ts#L188-L193" }, { + "kind": "interface", "inherits": { "type": { "name": "CharFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "HtmlStripCharFilter", "namespace": "_types.analysis" @@ -64835,13 +64835,13 @@ "specLocation": "_types/analysis/analyzers.ts#L195-L200" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "HunspellTokenFilter", "namespace": "_types.analysis" @@ -64903,13 +64903,13 @@ "specLocation": "_types/analysis/token_filters.ts#L202-L208" }, { + "kind": "interface", "inherits": { "type": { "name": "CompoundWordTokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "HyphenationDecompounderTokenFilter", "namespace": "_types.analysis" @@ -65040,13 +65040,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L104-L110" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuCollationTokenFilter", "namespace": "_types.analysis" @@ -65196,13 +65196,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L51-L65" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuFoldingTokenFilter", "namespace": "_types.analysis" @@ -65231,13 +65231,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L46-L49" }, { + "kind": "interface", "inherits": { "type": { "name": "CharFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuNormalizationCharFilter", "namespace": "_types.analysis" @@ -65293,13 +65293,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L78-L81" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuNormalizationTokenFilter", "namespace": "_types.analysis" @@ -65347,13 +65347,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L83-L87" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuTokenizer", "namespace": "_types.analysis" @@ -65398,13 +65398,13 @@ "specLocation": "_types/analysis/icu-plugin.ts#L73-L76" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "IcuTransformTokenFilter", "namespace": "_types.analysis" @@ -65606,13 +65606,13 @@ "specLocation": "_types/analysis/analyzers.ts#L216-L221" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KStemTokenFilter", "namespace": "_types.analysis" @@ -65646,13 +65646,13 @@ "specLocation": "_types/analysis/token_filters.ts#L215-L218" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KeepTypesTokenFilter", "namespace": "_types.analysis" @@ -65695,13 +65695,13 @@ "specLocation": "_types/analysis/token_filters.ts#L220-L224" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KeepWordsTokenFilter", "namespace": "_types.analysis" @@ -65784,13 +65784,13 @@ "specLocation": "_types/analysis/analyzers.ts#L47-L50" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KeywordMarkerTokenFilter", "namespace": "_types.analysis" @@ -65855,13 +65855,13 @@ "specLocation": "_types/analysis/token_filters.ts#L233-L239" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KeywordTokenizer", "namespace": "_types.analysis" @@ -65930,13 +65930,13 @@ "specLocation": "_types/analysis/kuromoji-plugin.ts#L25-L29" }, { + "kind": "interface", "inherits": { "type": { "name": "CharFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KuromojiIterationMarkCharFilter", "namespace": "_types.analysis" @@ -65976,13 +65976,13 @@ "specLocation": "_types/analysis/kuromoji-plugin.ts#L31-L35" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KuromojiPartOfSpeechTokenFilter", "namespace": "_types.analysis" @@ -66014,13 +66014,13 @@ "specLocation": "_types/analysis/kuromoji-plugin.ts#L37-L40" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KuromojiReadingFormTokenFilter", "namespace": "_types.analysis" @@ -66049,13 +66049,13 @@ "specLocation": "_types/analysis/kuromoji-plugin.ts#L42-L45" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KuromojiStemmerTokenFilter", "namespace": "_types.analysis" @@ -66103,13 +66103,13 @@ "specLocation": "_types/analysis/kuromoji-plugin.ts#L52-L56" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "KuromojiTokenizer", "namespace": "_types.analysis" @@ -66449,13 +66449,13 @@ "specLocation": "_types/analysis/analyzers.ts#L223-L228" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "LengthTokenFilter", "namespace": "_types.analysis" @@ -66495,13 +66495,13 @@ "specLocation": "_types/analysis/token_filters.ts#L245-L249" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "LetterTokenizer", "namespace": "_types.analysis" @@ -66519,13 +66519,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L67-L69" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "LimitTokenCountTokenFilter", "namespace": "_types.analysis" @@ -66554,6 +66554,7 @@ "name": "max_token_count", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -66563,7 +66564,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -66646,13 +66646,13 @@ "specLocation": "_types/analysis/normalizers.ts#L26-L28" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "LowercaseTokenFilter", "namespace": "_types.analysis" @@ -66681,13 +66681,13 @@ "specLocation": "_types/analysis/token_filters.ts#L257-L260" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "LowercaseTokenizer", "namespace": "_types.analysis" @@ -66705,13 +66705,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L71-L73" }, { + "kind": "interface", "inherits": { "type": { "name": "CharFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "MappingCharFilter", "namespace": "_types.analysis" @@ -66754,13 +66754,13 @@ "specLocation": "_types/analysis/char_filters.ts#L48-L52" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "MultiplexerTokenFilter", "namespace": "_types.analysis" @@ -66792,6 +66792,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -66801,7 +66802,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -66812,13 +66812,13 @@ "specLocation": "_types/analysis/token_filters.ts#L262-L266" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "NGramTokenFilter", "namespace": "_types.analysis" @@ -66858,6 +66858,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -66867,7 +66868,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -66878,13 +66878,13 @@ "specLocation": "_types/analysis/token_filters.ts#L268-L273" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "NGramTokenizer", "namespace": "_types.analysis" @@ -67033,13 +67033,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L75-L79" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "NoriPartOfSpeechTokenFilter", "namespace": "_types.analysis" @@ -67071,13 +67071,13 @@ "specLocation": "_types/analysis/token_filters.ts#L275-L278" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "NoriTokenizer", "namespace": "_types.analysis" @@ -67142,15 +67142,16 @@ "specLocation": "_types/analysis/tokenizers.ts#L81-L87" }, { + "kind": "type_alias", "docId": "analysis-normalizers", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/analysis-normalizers.html", - "kind": "type_alias", "name": { "name": "Normalizer", "namespace": "_types.analysis" }, "specLocation": "_types/analysis/normalizers.ts#L20-L24", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -67166,12 +67167,11 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] }, "variants": { - "defaultTag": "custom", "kind": "internal_tag", + "defaultTag": "custom", "tag": "type" } }, @@ -67230,13 +67230,13 @@ "specLocation": "_types/analysis/analyzers.ts#L237-L242" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PathHierarchyTokenizer", "namespace": "_types.analysis" @@ -67254,6 +67254,7 @@ "name": "buffer_size", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -67263,7 +67264,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -67296,6 +67296,7 @@ "name": "reverse", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -67305,7 +67306,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -67316,6 +67316,7 @@ "name": "skip", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -67325,7 +67326,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -67409,13 +67409,13 @@ "specLocation": "_types/analysis/analyzers.ts#L320-L327" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PatternCaptureTokenFilter", "namespace": "_types.analysis" @@ -67447,6 +67447,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -67456,7 +67457,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -67467,13 +67467,13 @@ "specLocation": "_types/analysis/token_filters.ts#L280-L284" }, { + "kind": "interface", "inherits": { "type": { "name": "CharFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PatternReplaceCharFilter", "namespace": "_types.analysis" @@ -67524,13 +67524,13 @@ "specLocation": "_types/analysis/char_filters.ts#L54-L59" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PatternReplaceTokenFilter", "namespace": "_types.analysis" @@ -67592,13 +67592,13 @@ "specLocation": "_types/analysis/token_filters.ts#L286-L292" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PatternTokenizer", "namespace": "_types.analysis" @@ -67816,13 +67816,13 @@ "specLocation": "_types/analysis/phonetic-plugin.ts#L59-L62" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PhoneticTokenFilter", "namespace": "_types.analysis" @@ -67851,6 +67851,7 @@ "name": "languageset", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -67869,8 +67870,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -67921,13 +67921,13 @@ "specLocation": "_types/analysis/phonetic-plugin.ts#L64-L72" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PorterStemTokenFilter", "namespace": "_types.analysis" @@ -67999,13 +67999,13 @@ "specLocation": "_types/analysis/analyzers.ts#L250-L255" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "PredicateTokenFilter", "namespace": "_types.analysis" @@ -68034,13 +68034,13 @@ "specLocation": "_types/analysis/token_filters.ts#L298-L301" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "RemoveDuplicatesTokenFilter", "namespace": "_types.analysis" @@ -68058,13 +68058,13 @@ "specLocation": "_types/analysis/token_filters.ts#L303-L305" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "ReverseTokenFilter", "namespace": "_types.analysis" @@ -68244,13 +68244,13 @@ "specLocation": "_types/analysis/analyzers.ts#L271-L276" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "ShingleTokenFilter", "namespace": "_types.analysis" @@ -68279,6 +68279,7 @@ "name": "max_shingle_size", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -68294,14 +68295,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "min_shingle_size", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -68317,8 +68318,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -68514,13 +68514,13 @@ "specLocation": "_types/analysis/languages.ts#L57-L80" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "SnowballTokenFilter", "namespace": "_types.analysis" @@ -68697,13 +68697,13 @@ "specLocation": "_types/analysis/analyzers.ts#L341-L345" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "StandardTokenizer", "namespace": "_types.analysis" @@ -68732,13 +68732,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L105-L108" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "StemmerOverrideTokenFilter", "namespace": "_types.analysis" @@ -68781,13 +68781,13 @@ "specLocation": "_types/analysis/token_filters.ts#L316-L320" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "StemmerTokenFilter", "namespace": "_types.analysis" @@ -68870,13 +68870,13 @@ "specLocation": "_types/analysis/analyzers.ts#L347-L352" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "StopTokenFilter", "namespace": "_types.analysis" @@ -68938,14 +68938,15 @@ "specLocation": "_types/analysis/token_filters.ts#L97-L103" }, { - "description": "Language value, such as _arabic_ or _thai_. Defaults to _english_.\nEach language value corresponds to a predefined list of stop words in Lucene. See Stop words by language for supported language values and their stop words.\nAlso accepts an array of stop words.", "kind": "type_alias", + "description": "Language value, such as _arabic_ or _thai_. Defaults to _english_.\nEach language value corresponds to a predefined list of stop words in Lucene. See Stop words by language for supported language values and their stop words.\nAlso accepts an array of stop words.", "name": { "name": "StopWords", "namespace": "_types.analysis" }, "specLocation": "_types/analysis/StopWords.ts#L20-L26", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -68964,8 +68965,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -69039,13 +69039,13 @@ "specLocation": "_types/analysis/token_filters.ts#L105-L108" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "SynonymGraphTokenFilter", "namespace": "_types.analysis" @@ -69154,13 +69154,13 @@ "specLocation": "_types/analysis/token_filters.ts#L110-L120" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "SynonymTokenFilter", "namespace": "_types.analysis" @@ -69337,17 +69337,18 @@ "specLocation": "_types/analysis/tokenizers.ts#L47-L54" }, { + "kind": "type_alias", "codegenNames": [ "name", "definition" ], - "kind": "type_alias", "name": { "name": "TokenFilter", "namespace": "_types.analysis" }, "specLocation": "_types/analysis/token_filters.ts#L346-L348", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -69363,8 +69364,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] } }, { @@ -69396,6 +69396,7 @@ }, "specLocation": "_types/analysis/token_filters.ts#L350-L402", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -69726,8 +69727,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -69736,17 +69736,18 @@ } }, { + "kind": "type_alias", "codegenNames": [ "name", "definition" ], - "kind": "type_alias", "name": { "name": "Tokenizer", "namespace": "_types.analysis" }, "specLocation": "_types/analysis/tokenizers.ts#L120-L122", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -69762,8 +69763,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] } }, { @@ -69795,6 +69795,7 @@ }, "specLocation": "_types/analysis/tokenizers.ts#L124-L142", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -69894,8 +69895,7 @@ "namespace": "_types.analysis" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -69904,13 +69904,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "TrimTokenFilter", "namespace": "_types.analysis" @@ -69928,13 +69928,13 @@ "specLocation": "_types/analysis/token_filters.ts#L328-L330" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "TruncateTokenFilter", "namespace": "_types.analysis" @@ -70017,13 +70017,13 @@ "specLocation": "_types/analysis/analyzers.ts#L299-L304" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "UaxEmailUrlTokenizer", "namespace": "_types.analysis" @@ -70052,13 +70052,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L110-L113" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "UniqueTokenFilter", "namespace": "_types.analysis" @@ -70087,13 +70087,13 @@ "specLocation": "_types/analysis/token_filters.ts#L337-L340" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "UppercaseTokenFilter", "namespace": "_types.analysis" @@ -70140,13 +70140,13 @@ "specLocation": "_types/analysis/analyzers.ts#L354-L357" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenizerBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "WhitespaceTokenizer", "namespace": "_types.analysis" @@ -70175,13 +70175,13 @@ "specLocation": "_types/analysis/tokenizers.ts#L115-L118" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "WordDelimiterGraphTokenFilter", "namespace": "_types.analysis" @@ -70276,6 +70276,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -70285,7 +70286,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -70379,13 +70379,13 @@ "specLocation": "_types/analysis/token_filters.ts#L151-L168" }, { + "kind": "interface", "inherits": { "type": { "name": "TokenFilterBase", "namespace": "_types.analysis" } }, - "kind": "interface", "name": { "name": "WordDelimiterTokenFilter", "namespace": "_types.analysis" @@ -70458,6 +70458,7 @@ "name": "preserve_original", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -70467,7 +70468,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -70561,13 +70561,13 @@ "specLocation": "_types/analysis/token_filters.ts#L134-L149" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "AggregateMetricDoubleProperty", "namespace": "_types.mapping" @@ -70741,13 +70741,13 @@ "specLocation": "_types/mapping/meta-fields.ts#L29-L40" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "BinaryProperty", "namespace": "_types.mapping" @@ -70765,13 +70765,13 @@ "specLocation": "_types/mapping/core.ts#L55-L57" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "BooleanProperty", "namespace": "_types.mapping" @@ -70833,13 +70833,13 @@ "specLocation": "_types/mapping/core.ts#L59-L65" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ByteNumberProperty", "namespace": "_types.mapping" @@ -70868,13 +70868,13 @@ "specLocation": "_types/mapping/core.ts#L172-L175" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "CompletionProperty", "namespace": "_types.mapping" @@ -70961,13 +70961,13 @@ "specLocation": "_types/mapping/specialized.ts#L33-L41" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ConstantKeywordProperty", "namespace": "_types.mapping" @@ -70992,13 +70992,13 @@ "specLocation": "_types/mapping/specialized.ts#L50-L53" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "CorePropertyBase", "namespace": "_types.mapping" @@ -71062,13 +71062,13 @@ "specLocation": "_types/mapping/TypeMapping.ts#L59-L61" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DateNanosProperty", "namespace": "_types.mapping" @@ -71152,13 +71152,13 @@ "specLocation": "_types/mapping/core.ts#L79-L87" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DateProperty", "namespace": "_types.mapping" @@ -71264,13 +71264,13 @@ "specLocation": "_types/mapping/core.ts#L67-L77" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DateRangeProperty", "namespace": "_types.mapping" @@ -71353,13 +71353,13 @@ "specLocation": "_types/mapping/DenseVectorIndexOptions.ts#L22-L27" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DenseVectorProperty", "namespace": "_types.mapping" @@ -71432,13 +71432,13 @@ "specLocation": "_types/mapping/complex.ts#L52-L59" }, { + "kind": "interface", "inherits": { "type": { "name": "CorePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" @@ -71459,13 +71459,13 @@ "specLocation": "_types/mapping/core.ts#L51-L53" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DoubleNumberProperty", "namespace": "_types.mapping" @@ -71494,13 +71494,13 @@ "specLocation": "_types/mapping/core.ts#L152-L155" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DoubleRangeProperty", "namespace": "_types.mapping" @@ -71518,8 +71518,8 @@ "specLocation": "_types/mapping/range.ts#L34-L36" }, { - "esQuirk": "This is a boolean that evolved into an enum. Boolean values should be accepted on reading, and\ntrue and false must be serialized as JSON booleans, or it may break Kibana (see elasticsearch-java#139)", "kind": "enum", + "esQuirk": "This is a boolean that evolved into an enum. Boolean values should be accepted on reading, and\ntrue and false must be serialized as JSON booleans, or it may break Kibana (see elasticsearch-java#139)", "members": [ { "name": "strict" @@ -71541,13 +71541,13 @@ "specLocation": "_types/mapping/dynamic-template.ts#L49-L58" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "DynamicProperty", "namespace": "_types.mapping" @@ -71840,6 +71840,7 @@ "name": "match", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71858,8 +71859,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -71867,6 +71867,7 @@ "name": "path_match", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71885,8 +71886,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -71894,6 +71894,7 @@ "name": "unmatch", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71912,8 +71913,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -71921,6 +71921,7 @@ "name": "path_unmatch", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71939,8 +71940,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -71948,6 +71948,7 @@ "name": "match_mapping_type", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71966,8 +71967,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -71975,6 +71975,7 @@ "name": "unmatch_mapping_type", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -71993,8 +71994,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -72016,13 +72016,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "FieldAliasProperty", "namespace": "_types.mapping" @@ -72072,6 +72072,7 @@ "name": "mapping", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -72079,7 +72080,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -72263,13 +72263,13 @@ "specLocation": "_types/mapping/Property.ts#L166-L213" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "FlattenedProperty", "namespace": "_types.mapping" @@ -72386,13 +72386,13 @@ "specLocation": "_types/mapping/complex.ts#L26-L37" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "FloatNumberProperty", "namespace": "_types.mapping" @@ -72421,13 +72421,13 @@ "specLocation": "_types/mapping/core.ts#L142-L145" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "FloatRangeProperty", "namespace": "_types.mapping" @@ -72471,13 +72471,13 @@ "specLocation": "_types/mapping/geo.ts#L34-L39" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "GeoPointProperty", "namespace": "_types.mapping" @@ -72561,6 +72561,7 @@ "specLocation": "_types/mapping/geo.ts#L24-L32" }, { + "kind": "interface", "description": "The `geo_shape` data type facilitates the indexing of and searching with arbitrary geo shapes such as rectangles\nand polygons.", "docId": "geo-shape", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/geo-shape.html", @@ -72570,7 +72571,6 @@ "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "GeoShapeProperty", "namespace": "_types.mapping" @@ -72659,13 +72659,13 @@ "specLocation": "_types/mapping/geo.ts#L56-L59" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "HalfFloatNumberProperty", "namespace": "_types.mapping" @@ -72694,13 +72694,13 @@ "specLocation": "_types/mapping/core.ts#L147-L150" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "HistogramProperty", "namespace": "_types.mapping" @@ -72729,13 +72729,13 @@ "specLocation": "_types/mapping/specialized.ts#L60-L63" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "IcuCollationProperty", "namespace": "_types.mapping" @@ -72974,13 +72974,13 @@ "specLocation": "_types/mapping/core.ts#L257-L262" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "IntegerNumberProperty", "namespace": "_types.mapping" @@ -73009,13 +73009,13 @@ "specLocation": "_types/mapping/core.ts#L157-L160" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "IntegerRangeProperty", "namespace": "_types.mapping" @@ -73033,13 +73033,13 @@ "specLocation": "_types/mapping/range.ts#L42-L44" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "IpProperty", "namespace": "_types.mapping" @@ -73143,13 +73143,13 @@ "specLocation": "_types/mapping/specialized.ts#L65-L79" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "IpRangeProperty", "namespace": "_types.mapping" @@ -73167,13 +73167,13 @@ "specLocation": "_types/mapping/range.ts#L46-L48" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "JoinProperty", "namespace": "_types.mapping" @@ -73183,6 +73183,7 @@ "name": "relations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -73190,9 +73191,9 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -73211,8 +73212,7 @@ } } } - ], - "kind": "union_of" + ] } } }, @@ -73239,13 +73239,13 @@ "specLocation": "_types/mapping/core.ts#L89-L93" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "KeywordProperty", "namespace": "_types.mapping" @@ -73393,13 +73393,13 @@ "specLocation": "_types/mapping/core.ts#L95-L113" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "LongNumberProperty", "namespace": "_types.mapping" @@ -73428,13 +73428,13 @@ "specLocation": "_types/mapping/core.ts#L162-L165" }, { + "kind": "interface", "inherits": { "type": { "name": "RangePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "LongRangeProperty", "namespace": "_types.mapping" @@ -73452,8 +73452,8 @@ "specLocation": "_types/mapping/range.ts#L50-L52" }, { - "description": "A variant of text that trades scoring and efficiency of positional queries for space efficiency. This field\neffectively stores data the same way as a text field that only indexes documents (index_options: docs) and\ndisables norms (norms: false). Term queries perform as fast if not faster as on text fields, however queries\nthat need positions such as the match_phrase query perform slower as they need to look at the _source document\nto verify whether a phrase matches. All queries return constant scores that are equal to 1.0.", "kind": "interface", + "description": "A variant of text that trades scoring and efficiency of positional queries for space efficiency. This field\neffectively stores data the same way as a text field that only indexes documents (index_options: docs) and\ndisables norms (norms: false). Term queries perform as fast if not faster as on text fields, however queries\nthat need positions such as the match_phrase query perform slower as they need to look at the _source document\nto verify whether a phrase matches. All queries return constant scores that are equal to 1.0.", "name": { "name": "MatchOnlyTextProperty", "namespace": "_types.mapping" @@ -73474,6 +73474,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -73481,7 +73482,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -73499,6 +73499,7 @@ "name": "meta", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -73506,7 +73507,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -73549,13 +73549,13 @@ "specLocation": "_types/mapping/dynamic-template.ts#L44-L47" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "Murmur3HashProperty", "namespace": "_types.mapping" @@ -73573,13 +73573,13 @@ "specLocation": "_types/mapping/specialized.ts#L81-L83" }, { + "kind": "interface", "inherits": { "type": { "name": "CorePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "NestedProperty", "namespace": "_types.mapping" @@ -73630,13 +73630,13 @@ "specLocation": "_types/mapping/complex.ts#L39-L44" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "NumberPropertyBase", "namespace": "_types.mapping" @@ -73753,13 +73753,13 @@ "specLocation": "_types/mapping/core.ts#L115-L135" }, { + "kind": "interface", "inherits": { "type": { "name": "CorePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ObjectProperty", "namespace": "_types.mapping" @@ -73815,13 +73815,13 @@ "specLocation": "_types/mapping/core.ts#L137-L140" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "PercolatorProperty", "namespace": "_types.mapping" @@ -73839,13 +73839,13 @@ "specLocation": "_types/mapping/core.ts#L188-L190" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "PointProperty", "namespace": "_types.mapping" @@ -73903,6 +73903,7 @@ }, "specLocation": "_types/mapping/Property.ts#L96-L164", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -74247,12 +74248,11 @@ "namespace": "_types.mapping" } } - ], - "kind": "union_of" + ] }, "variants": { - "defaultTag": "object", "kind": "internal_tag", + "defaultTag": "object", "nonExhaustive": true, "tag": "type" } @@ -74271,6 +74271,7 @@ "name": "meta", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -74278,7 +74279,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -74293,6 +74293,7 @@ "name": "properties", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -74300,7 +74301,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -74337,6 +74337,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -74344,7 +74345,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -74359,13 +74359,13 @@ "specLocation": "_types/mapping/Property.ts#L84-L94" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "RangePropertyBase", "namespace": "_types.mapping" @@ -74408,13 +74408,13 @@ "specLocation": "_types/mapping/range.ts#L23-L27" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "RankFeatureProperty", "namespace": "_types.mapping" @@ -74443,13 +74443,13 @@ "specLocation": "_types/mapping/core.ts#L192-L195" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "RankFeaturesProperty", "namespace": "_types.mapping" @@ -74675,6 +74675,7 @@ }, "specLocation": "_types/mapping/RuntimeFields.ts#L24-L24", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -74682,7 +74683,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -74694,13 +74694,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ScaledFloatNumberProperty", "namespace": "_types.mapping" @@ -74740,13 +74740,13 @@ "specLocation": "_types/mapping/core.ts#L182-L186" }, { + "kind": "interface", "inherits": { "type": { "name": "CorePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "SearchAsYouTypeProperty", "namespace": "_types.mapping" @@ -74870,6 +74870,7 @@ "name": "meta", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -74877,7 +74878,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -74903,6 +74903,7 @@ "specLocation": "_types/mapping/core.ts#L206-L210" }, { + "kind": "interface", "description": "The `shape` data type facilitates the indexing of and searching with arbitrary `x, y` cartesian shapes such as\nrectangles and polygons.", "docId": "shape", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/shape.html", @@ -74912,7 +74913,6 @@ "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ShapeProperty", "namespace": "_types.mapping" @@ -74974,13 +74974,13 @@ "specLocation": "_types/mapping/geo.ts#L73-L85" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "ShortNumberProperty", "namespace": "_types.mapping" @@ -75132,13 +75132,13 @@ "specLocation": "_types/mapping/meta-fields.ts#L67-L75" }, { + "kind": "interface", "inherits": { "type": { "name": "PropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "SparseVectorProperty", "namespace": "_types.mapping" @@ -75199,6 +75199,7 @@ "name": "precision", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -75214,8 +75215,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -75285,13 +75285,13 @@ "specLocation": "_types/mapping/core.ts#L264-L267" }, { + "kind": "interface", "inherits": { "type": { "name": "CorePropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "TextProperty", "namespace": "_types.mapping" @@ -75488,13 +75488,13 @@ "specLocation": "_types/mapping/TimeSeriesMetricType.ts#L20-L26" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "TokenCountProperty", "namespace": "_types.mapping" @@ -75626,6 +75626,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -75633,7 +75634,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -75695,6 +75695,7 @@ "name": "properties", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -75702,7 +75703,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -75750,6 +75750,7 @@ "name": "runtime", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -75757,7 +75758,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -75811,13 +75811,13 @@ "specLocation": "_types/mapping/TypeMapping.ts#L34-L57" }, { + "kind": "interface", "inherits": { "type": { "name": "NumberPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "UnsignedLongNumberProperty", "namespace": "_types.mapping" @@ -75846,13 +75846,13 @@ "specLocation": "_types/mapping/core.ts#L177-L180" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "VersionProperty", "namespace": "_types.mapping" @@ -75870,13 +75870,13 @@ "specLocation": "_types/mapping/core.ts#L287-L289" }, { + "kind": "interface", "inherits": { "type": { "name": "DocValuesPropertyBase", "namespace": "_types.mapping" } }, - "kind": "interface", "name": { "name": "WildcardProperty", "namespace": "_types.mapping" @@ -75911,13 +75911,13 @@ "specLocation": "_types/mapping/core.ts#L291-L298" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "BoolQuery", "namespace": "_types.query_dsl" @@ -75928,6 +75928,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -75946,8 +75947,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -75969,6 +75969,7 @@ "name": "must", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -75987,8 +75988,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -75996,6 +75996,7 @@ "name": "must_not", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -76014,8 +76015,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -76023,6 +76023,7 @@ "name": "should", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -76041,21 +76042,20 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "_types/query_dsl/compound.ts#L29-L53" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "BoostingQuery", "namespace": "_types.query_dsl" @@ -76142,13 +76142,13 @@ "specLocation": "_types/query_dsl/abstractions.ts#L509-L512" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "CombinedFieldsQuery", "namespace": "_types.query_dsl" @@ -76256,13 +76256,13 @@ "specLocation": "_types/query_dsl/abstractions.ts#L514-L523" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "CommonTermsQuery", "namespace": "_types.query_dsl" @@ -76339,13 +76339,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L34-L44" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ConstantScoreQuery", "namespace": "_types.query_dsl" @@ -76367,6 +76367,7 @@ "specLocation": "_types/query_dsl/compound.ts#L70-L77" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -76392,7 +76393,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "DateDecayFunction", "namespace": "_types.query_dsl" @@ -76401,6 +76401,7 @@ "specLocation": "_types/query_dsl/compound.ts#L196-L196" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -76423,7 +76424,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "DateDistanceFeatureQuery", "namespace": "_types.query_dsl" @@ -76432,6 +76432,7 @@ "specLocation": "_types/query_dsl/specialized.ts#L72-L75" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -76447,7 +76448,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "DateRangeQuery", "namespace": "_types.query_dsl" @@ -76481,19 +76481,20 @@ "specLocation": "_types/query_dsl/term.ts#L146-L155" }, { + "kind": "type_alias", "codegenNames": [ "untyped", "date", "numeric", "geo" ], - "kind": "type_alias", "name": { "name": "DecayFunction", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/compound.ts#L202-L211", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -76523,8 +76524,7 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "untagged", @@ -76535,6 +76535,7 @@ } }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -76549,6 +76550,7 @@ } }, { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -76565,7 +76567,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DecayPlacement", "namespace": "_types.query_dsl" @@ -76592,7 +76593,6 @@ "namespace": "_types.query_dsl.DecayFunctionBase" } ], - "kind": "interface", "name": { "name": "DecayFunctionBase", "namespace": "_types.query_dsl" @@ -76615,6 +76615,7 @@ "specLocation": "_types/query_dsl/compound.ts#L178-L189" }, { + "kind": "interface", "generics": [ { "name": "TOrigin", @@ -76625,7 +76626,6 @@ "namespace": "_types.query_dsl.DecayPlacement" } ], - "kind": "interface", "name": { "name": "DecayPlacement", "namespace": "_types.query_dsl" @@ -76685,13 +76685,13 @@ "specLocation": "_types/query_dsl/compound.ts#L157-L176" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "DisMaxQuery", "namespace": "_types.query_dsl" @@ -76729,18 +76729,19 @@ "specLocation": "_types/query_dsl/compound.ts#L79-L91" }, { + "kind": "type_alias", "codegenNames": [ "untyped", "geo", "date" ], - "kind": "type_alias", "name": { "name": "DistanceFeatureQuery", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/specialized.ts#L77-L85", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -76763,8 +76764,7 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "untagged", @@ -76775,6 +76775,7 @@ } }, { + "kind": "interface", "generics": [ { "name": "TOrigin", @@ -76791,7 +76792,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "DistanceFeatureQueryBase", "namespace": "_types.query_dsl" @@ -76837,13 +76837,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L40-L60" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ExistsQuery", "namespace": "_types.query_dsl" @@ -76865,8 +76865,8 @@ "specLocation": "_types/query_dsl/term.ts#L37-L42" }, { - "description": "A reference to a field with formatting instructions on how to return the value", "kind": "interface", + "description": "A reference to a field with formatting instructions on how to return the value", "name": { "name": "FieldAndFormat", "namespace": "_types.query_dsl" @@ -77113,8 +77113,8 @@ "specLocation": "_types/query_dsl/compound.ts#L282-L308" }, { - "esQuirk": "this container is valid without a variant. Despite being documented as a function, 'weight'\nis actually a container property that can be combined with a function. Comment in the ES code\n(SearchModule#registerScoreFunctions) says: Weight doesn't have its own parser, so every function\nsupports it out of the box. Can be a single function too when not associated to any other function,\nwhich is why it needs to be registered manually here.", "kind": "interface", + "esQuirk": "this container is valid without a variant. Despite being documented as a function, 'weight'\nis actually a container property that can be combined with a function. Comment in the ES code\n(SearchModule#registerScoreFunctions) says: Weight doesn't have its own parser, so every function\nsupports it out of the box. Can be a single function too when not associated to any other function,\nwhich is why it needs to be registered manually here.", "name": { "name": "FunctionScoreContainer", "namespace": "_types.query_dsl" @@ -77257,13 +77257,13 @@ "specLocation": "_types/query_dsl/compound.ts#L255-L280" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "FunctionScoreQuery", "namespace": "_types.query_dsl" @@ -77351,13 +77351,13 @@ "specLocation": "_types/query_dsl/compound.ts#L93-L122" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "FuzzyQuery", "namespace": "_types.query_dsl" @@ -77436,6 +77436,7 @@ "name": "value", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -77458,8 +77459,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -77467,6 +77467,7 @@ "specLocation": "_types/query_dsl/term.ts#L44-L79" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -77504,7 +77505,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoBoundingBoxQuery", "namespace": "_types.query_dsl" @@ -77555,6 +77555,7 @@ "specLocation": "_types/query_dsl/geo.ts#L32-L53" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -77580,7 +77581,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoDecayFunction", "namespace": "_types.query_dsl" @@ -77589,6 +77589,7 @@ "specLocation": "_types/query_dsl/compound.ts#L197-L200" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -77611,7 +77612,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoDistanceFeatureQuery", "namespace": "_types.query_dsl" @@ -77620,6 +77620,7 @@ "specLocation": "_types/query_dsl/specialized.ts#L67-L70" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -77657,7 +77658,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoDistanceQuery", "namespace": "_types.query_dsl" @@ -77760,6 +77760,7 @@ "specLocation": "_types/query_dsl/geo.ts#L93-L95" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -77801,7 +77802,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoPolygonQuery", "namespace": "_types.query_dsl" @@ -77880,6 +77880,7 @@ "specLocation": "_types/query_dsl/geo.ts#L115-L126" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -77917,7 +77918,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "GeoShapeQuery", "namespace": "_types.query_dsl" @@ -77961,13 +77961,13 @@ "specLocation": "_types/query_dsl/geo.ts#L159-L169" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "HasChildQuery", "namespace": "_types.query_dsl" @@ -78065,13 +78065,13 @@ "specLocation": "_types/query_dsl/joining.ts#L41-L76" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "HasParentQuery", "namespace": "_types.query_dsl" @@ -78145,13 +78145,13 @@ "specLocation": "_types/query_dsl/joining.ts#L78-L104" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "IdsQuery", "namespace": "_types.query_dsl" @@ -78700,13 +78700,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L218-L233" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "IntervalsQuery", "namespace": "_types.query_dsl" @@ -78839,6 +78839,7 @@ "specLocation": "_types/query_dsl/fulltext.ts#L265-L280" }, { + "kind": "type_alias", "codegenNames": [ "text", "document" @@ -78846,13 +78847,13 @@ "description": "Text that we want similar documents for or a lookup to a document's field for the text.", "docId": "document-input-parameters", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-mlt-query.html#_document_input_parameters", - "kind": "type_alias", "name": { "name": "Like", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/specialized.ts#L195-L200", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -78868,8 +78869,7 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] } }, { @@ -78930,6 +78930,7 @@ "name": "per_field_analyzer", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -78937,7 +78938,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -78986,13 +78986,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L171-L193" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchAllQuery", "namespace": "_types.query_dsl" @@ -79001,13 +79001,13 @@ "specLocation": "_types/query_dsl/MatchAllQuery.ts#L22-L22" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchBoolPrefixQuery", "namespace": "_types.query_dsl" @@ -79138,13 +79138,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L349-L403" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchNoneQuery", "namespace": "_types.query_dsl" @@ -79153,13 +79153,13 @@ "specLocation": "_types/query_dsl/MatchNoneQuery.ts#L22-L22" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchPhrasePrefixQuery", "namespace": "_types.query_dsl" @@ -79235,13 +79235,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L428-L454" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchPhraseQuery", "namespace": "_types.query_dsl" @@ -79304,13 +79304,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L405-L426" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MatchQuery", "namespace": "_types.query_dsl" @@ -79470,6 +79470,7 @@ "name": "query", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -79492,8 +79493,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -79514,13 +79514,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L282-L347" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MoreLikeThisQuery", "namespace": "_types.query_dsl" @@ -79599,6 +79599,7 @@ "name": "like", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -79617,8 +79618,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -79740,6 +79740,7 @@ "name": "unlike", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -79758,8 +79759,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -79789,13 +79789,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L87-L169" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "MultiMatchQuery", "namespace": "_types.query_dsl" @@ -80056,13 +80056,13 @@ "specLocation": "_types/query_dsl/compound.ts#L355-L372" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "NestedQuery", "namespace": "_types.query_dsl" @@ -80136,6 +80136,7 @@ "specLocation": "_types/query_dsl/joining.ts#L106-L130" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -80151,7 +80152,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "NumberRangeQuery", "namespace": "_types.query_dsl" @@ -80160,6 +80160,7 @@ "specLocation": "_types/query_dsl/term.ts#L157-L157" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -80185,7 +80186,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "NumericDecayFunction", "namespace": "_types.query_dsl" @@ -80216,13 +80216,13 @@ "specLocation": "_types/query_dsl/Operator.ts#L22-L27" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ParentIdQuery", "namespace": "_types.query_dsl" @@ -80269,13 +80269,13 @@ "specLocation": "_types/query_dsl/joining.ts#L132-L146" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "PercolateQuery", "namespace": "_types.query_dsl" @@ -80422,13 +80422,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L262-L271" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "PinnedQuery", "namespace": "_types.query_dsl" @@ -80484,13 +80484,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "PrefixQuery", "namespace": "_types.query_dsl" @@ -80581,9 +80581,9 @@ "specLocation": "_types/query_dsl/abstractions.ts#L452-L463" }, { + "kind": "interface", "docId": "query-dsl", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl.html", - "kind": "interface", "name": { "name": "QueryContainer", "namespace": "_types.query_dsl" @@ -80625,6 +80625,7 @@ "name": "common", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80632,7 +80633,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -80740,6 +80740,7 @@ "name": "fuzzy", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80747,7 +80748,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -80864,6 +80864,7 @@ "name": "intervals", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80871,7 +80872,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -80903,6 +80903,7 @@ "name": "match", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80910,7 +80911,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -80942,6 +80942,7 @@ "name": "match_bool_prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80949,7 +80950,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -80981,6 +80981,7 @@ "name": "match_phrase", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -80988,7 +80989,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81006,6 +81006,7 @@ "name": "match_phrase_prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81013,7 +81014,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81115,6 +81115,7 @@ "name": "prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81122,7 +81123,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81154,6 +81154,7 @@ "name": "range", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81161,7 +81162,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81193,6 +81193,7 @@ "name": "regexp", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81200,7 +81201,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81401,6 +81401,7 @@ "name": "span_term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81408,7 +81409,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81459,6 +81459,7 @@ "name": "term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81466,7 +81467,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81498,6 +81498,7 @@ "name": "terms_set", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81505,7 +81506,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81533,6 +81533,7 @@ "name": "text_expansion", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81540,7 +81541,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81567,6 +81567,7 @@ "name": "weighted_tokens", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81574,7 +81575,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81592,6 +81592,7 @@ "name": "wildcard", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -81599,7 +81600,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -81647,13 +81647,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "QueryStringQuery", "namespace": "_types.query_dsl" @@ -82009,6 +82009,7 @@ "name": "seed", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -82024,27 +82025,27 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], "specLocation": "_types/query_dsl/compound.ts#L131-L134" }, { + "kind": "type_alias", "codegenNames": [ "untyped", "date", "number", "term" ], - "kind": "type_alias", "name": { "name": "RangeQuery", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/term.ts#L161-L170", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -82074,8 +82075,7 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "untagged", @@ -82086,6 +82086,7 @@ } }, { + "kind": "interface", "generics": [ { "name": "T", @@ -82098,7 +82099,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RangeQueryBase", "namespace": "_types.query_dsl" @@ -82169,6 +82169,7 @@ "name": "from", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -82184,14 +82185,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "to", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -82207,8 +82208,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -82246,13 +82246,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L273-L273" }, { + "kind": "interface", "inherits": { "type": { "name": "RankFeatureFunction", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RankFeatureFunctionLinear", "namespace": "_types.query_dsl" @@ -82261,13 +82261,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L275-L275" }, { + "kind": "interface", "inherits": { "type": { "name": "RankFeatureFunction", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RankFeatureFunctionLogarithm", "namespace": "_types.query_dsl" @@ -82289,13 +82289,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L277-L282" }, { + "kind": "interface", "inherits": { "type": { "name": "RankFeatureFunction", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RankFeatureFunctionSaturation", "namespace": "_types.query_dsl" @@ -82317,13 +82317,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L284-L289" }, { + "kind": "interface", "inherits": { "type": { "name": "RankFeatureFunction", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RankFeatureFunctionSigmoid", "namespace": "_types.query_dsl" @@ -82357,13 +82357,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L291-L300" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RankFeatureQuery", "namespace": "_types.query_dsl" @@ -82433,13 +82433,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L302-L325" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RegexpQuery", "namespace": "_types.query_dsl" @@ -82524,13 +82524,13 @@ "specLocation": "_types/query_dsl/term.ts#L187-L217" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "RuleQuery", "namespace": "_types.query_dsl" @@ -82572,13 +82572,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L381-L385" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ScriptQuery", "namespace": "_types.query_dsl" @@ -82622,13 +82622,13 @@ "specLocation": "_types/query_dsl/compound.ts#L124-L129" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ScriptScoreQuery", "namespace": "_types.query_dsl" @@ -82674,13 +82674,13 @@ "specLocation": "_types/query_dsl/specialized.ts#L335-L349" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SemanticQuery", "namespace": "_types.query_dsl" @@ -82760,6 +82760,7 @@ "specLocation": "_types/query_dsl/specialized.ts#L366-L379" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -82797,7 +82798,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "ShapeQuery", "namespace": "_types.query_dsl" @@ -82881,16 +82881,17 @@ "specLocation": "_types/query_dsl/fulltext.ts#L708-L763" }, { + "kind": "type_alias", "description": "Query flags can be either a single flag or a combination of flags, e.g. `OR|AND|PREFIX`", "docId": "supported-flags", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-simple-query-string-query.html#supported-flags", - "kind": "type_alias", "name": { "name": "SimpleQueryStringFlags", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/fulltext.ts#L702-L706", "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -82900,7 +82901,6 @@ } } ], - "kind": "instance_of", "type": { "name": "PipeSeparatedFlags", "namespace": "_spec_utils" @@ -82908,13 +82908,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SimpleQueryStringQuery", "namespace": "_types.query_dsl" @@ -83094,13 +83094,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L765-L830" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanContainingQuery", "namespace": "_types.query_dsl" @@ -83134,13 +83134,13 @@ "specLocation": "_types/query_dsl/span.ts#L25-L36" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanFieldMaskingQuery", "namespace": "_types.query_dsl" @@ -83172,13 +83172,13 @@ "specLocation": "_types/query_dsl/span.ts#L38-L41" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanFirstQuery", "namespace": "_types.query_dsl" @@ -83212,14 +83212,15 @@ "specLocation": "_types/query_dsl/span.ts#L43-L52" }, { - "description": "Can only be used as a clause in a span_near query.", "kind": "type_alias", + "description": "Can only be used as a clause in a span_near query.", "name": { "name": "SpanGapQuery", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/span.ts#L54-L56", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -83227,7 +83228,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -83239,13 +83239,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanMultiTermQuery", "namespace": "_types.query_dsl" @@ -83267,13 +83267,13 @@ "specLocation": "_types/query_dsl/span.ts#L58-L63" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanNearQuery", "namespace": "_types.query_dsl" @@ -83322,13 +83322,13 @@ "specLocation": "_types/query_dsl/span.ts#L65-L78" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanNotQuery", "namespace": "_types.query_dsl" @@ -83400,13 +83400,13 @@ "specLocation": "_types/query_dsl/span.ts#L80-L104" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanOrQuery", "namespace": "_types.query_dsl" @@ -83537,6 +83537,7 @@ "name": "span_term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -83544,7 +83545,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -83575,13 +83575,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanTermQuery", "namespace": "_types.query_dsl" @@ -83603,13 +83603,13 @@ "specLocation": "_types/query_dsl/span.ts#L113-L116" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SpanWithinQuery", "namespace": "_types.query_dsl" @@ -83643,13 +83643,13 @@ "specLocation": "_types/query_dsl/span.ts#L118-L129" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "SparseVectorQuery", "namespace": "_types.query_dsl" @@ -83673,6 +83673,7 @@ "name": "query_vector", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -83680,7 +83681,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -83767,13 +83767,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TermQuery", "namespace": "_types.query_dsl" @@ -83815,6 +83815,7 @@ "specLocation": "_types/query_dsl/term.ts#L219-L233" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -83830,7 +83831,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TermRangeQuery", "namespace": "_types.query_dsl" @@ -83893,6 +83893,7 @@ "specLocation": "_types/query_dsl/term.ts#L247-L252" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -83930,7 +83931,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TermsQuery", "namespace": "_types.query_dsl" @@ -83939,17 +83939,18 @@ "specLocation": "_types/query_dsl/term.ts#L235-L240" }, { + "kind": "type_alias", "codegenNames": [ "value", "lookup" ], - "kind": "type_alias", "name": { "name": "TermsQueryField", "namespace": "_types.query_dsl" }, "specLocation": "_types/query_dsl/term.ts#L242-L245", "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -83968,18 +83969,17 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TermsSetQuery", "namespace": "_types.query_dsl" @@ -84028,13 +84028,13 @@ "specLocation": "_types/query_dsl/term.ts#L254-L267" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TextExpansionQuery", "namespace": "_types.query_dsl" @@ -84172,13 +84172,13 @@ "specLocation": "_types/query_dsl/TokenPruningConfig.ts#L22-L35" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "TypeQuery", "namespace": "_types.query_dsl" @@ -84199,6 +84199,7 @@ "specLocation": "_types/query_dsl/term.ts#L269-L271" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -84216,7 +84217,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "UntypedDecayFunction", "namespace": "_types.query_dsl" @@ -84225,6 +84225,7 @@ "specLocation": "_types/query_dsl/compound.ts#L191-L194" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -84239,7 +84240,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "UntypedDistanceFeatureQuery", "namespace": "_types.query_dsl" @@ -84248,6 +84248,7 @@ "specLocation": "_types/query_dsl/specialized.ts#L62-L65" }, { + "kind": "interface", "inherits": { "generics": [ { @@ -84259,7 +84260,6 @@ "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "UntypedRangeQuery", "namespace": "_types.query_dsl" @@ -84293,13 +84293,13 @@ "specLocation": "_types/query_dsl/term.ts#L135-L144" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "WeightedTokensQuery", "namespace": "_types.query_dsl" @@ -84310,6 +84310,7 @@ "name": "tokens", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -84317,7 +84318,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -84344,13 +84344,13 @@ "specLocation": "_types/query_dsl/WeightedTokensQuery.ts#L27-L32" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "WildcardQuery", "namespace": "_types.query_dsl" @@ -84417,13 +84417,13 @@ "specLocation": "_types/query_dsl/term.ts#L273-L290" }, { + "kind": "interface", "inherits": { "type": { "name": "QueryBase", "namespace": "_types.query_dsl" } }, - "kind": "interface", "name": { "name": "WrapperQuery", "namespace": "_types.query_dsl" @@ -84463,13 +84463,13 @@ "specLocation": "_types/query_dsl/fulltext.ts#L569-L578" }, { + "kind": "interface", "generics": [ { "name": "TDocument", "namespace": "async_search._types.AsyncSearch" } ], - "kind": "interface", "name": { "name": "AsyncSearch", "namespace": "async_search._types" @@ -84480,6 +84480,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -84487,7 +84488,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -84513,6 +84513,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -84520,7 +84521,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -84531,6 +84531,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84540,7 +84541,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -84619,6 +84619,7 @@ "name": "suggest", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -84626,11 +84627,11 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84640,7 +84641,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Suggest", "namespace": "_global.search._types" @@ -84686,6 +84686,7 @@ "specLocation": "async_search/_types/AsyncSearch.ts#L30-L56" }, { + "kind": "interface", "generics": [ { "name": "TDocument", @@ -84698,7 +84699,6 @@ "namespace": "async_search._types" } }, - "kind": "interface", "name": { "name": "AsyncSearchDocumentResponseBase", "namespace": "async_search._types" @@ -84708,6 +84708,7 @@ "name": "response", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84717,7 +84718,6 @@ } } ], - "kind": "instance_of", "type": { "name": "AsyncSearch", "namespace": "async_search._types" @@ -84785,6 +84785,7 @@ "name": "expiration_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84794,7 +84795,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -84816,6 +84816,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84825,7 +84826,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -84848,6 +84848,7 @@ "name": "completion_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -84857,7 +84858,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -84868,6 +84868,7 @@ "specLocation": "async_search/_types/AsyncSearchResponseBase.ts#L24-L49" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -84881,7 +84882,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "async_search.delete" @@ -84904,6 +84904,7 @@ "specLocation": "async_search/delete/AsyncSearchDeleteRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -84914,7 +84915,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "async_search.delete" @@ -84922,6 +84922,7 @@ "specLocation": "async_search/delete/AsyncSearchDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -84935,7 +84936,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "async_search.get" @@ -84995,9 +84995,11 @@ "specLocation": "async_search/get/AsyncSearchGetRequest.ts#L24-L54" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -85007,7 +85009,6 @@ } } ], - "kind": "instance_of", "type": { "name": "AsyncSearchDocumentResponseBase", "namespace": "async_search._types" @@ -85020,7 +85021,6 @@ "namespace": "async_search.get.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "async_search.get" @@ -85028,6 +85028,7 @@ "specLocation": "async_search/get/AsyncSearchGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -85041,7 +85042,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "async_search.status" @@ -85064,6 +85064,7 @@ "specLocation": "async_search/status/AsyncSearchStatusRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -85074,7 +85075,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "async_search.status" @@ -85082,13 +85082,13 @@ "specLocation": "async_search/status/AsyncSearchStatusResponse.ts#L39-L41" }, { + "kind": "interface", "inherits": { "type": { "name": "AsyncSearchResponseBase", "namespace": "async_search._types" } }, - "kind": "interface", "name": { "name": "StatusResponseBase", "namespace": "async_search.status" @@ -85134,6 +85134,7 @@ "specLocation": "async_search/status/AsyncSearchStatusResponse.ts#L24-L38" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -85147,6 +85148,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -85154,7 +85156,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -85194,6 +85195,7 @@ "name": "ext", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -85201,7 +85203,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -85251,6 +85252,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -85258,7 +85260,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -85296,6 +85297,7 @@ "name": "knn", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -85314,8 +85316,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -85368,6 +85369,7 @@ "name": "rescore", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -85386,8 +85388,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -85395,6 +85396,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -85402,7 +85404,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -85622,7 +85623,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "async_search.submit" @@ -86194,6 +86194,7 @@ "name": "sort", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -86212,17 +86213,18 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "async_search/submit/AsyncSearchSubmitRequest.ts#L55-L286" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -86232,7 +86234,6 @@ } } ], - "kind": "instance_of", "type": { "name": "AsyncSearchDocumentResponseBase", "namespace": "async_search._types" @@ -86245,7 +86246,6 @@ "namespace": "async_search.submit.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "async_search.submit" @@ -86278,6 +86278,7 @@ "name": "deciders", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -86285,7 +86286,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -86296,6 +86296,7 @@ "specLocation": "autoscaling/_types/AutoscalingPolicy.ts#L23-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -86309,7 +86310,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "autoscaling.delete_autoscaling_policy" @@ -86332,6 +86332,7 @@ "specLocation": "autoscaling/delete_autoscaling_policy/DeleteAutoscalingPolicyRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -86342,7 +86343,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "autoscaling.delete_autoscaling_policy" @@ -86467,6 +86467,7 @@ "name": "deciders", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -86474,7 +86475,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -86542,6 +86542,7 @@ "specLocation": "autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L43-L46" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -86555,7 +86556,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "autoscaling.get_autoscaling_capacity" @@ -86565,6 +86565,7 @@ "specLocation": "autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -86572,6 +86573,7 @@ "name": "policies", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -86579,7 +86581,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -86592,7 +86593,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "autoscaling.get_autoscaling_capacity" @@ -86600,6 +86600,7 @@ "specLocation": "autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L25-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -86613,7 +86614,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "autoscaling.get_autoscaling_policy" @@ -86636,6 +86636,7 @@ "specLocation": "autoscaling/get_autoscaling_policy/GetAutoscalingPolicyRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -86646,7 +86647,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "autoscaling.get_autoscaling_policy" @@ -86654,12 +86654,13 @@ "specLocation": "autoscaling/get_autoscaling_policy/GetAutoscalingPolicyResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "policy", "kind": "value", + "codegenName": "policy", "value": { "kind": "instance_of", "type": { @@ -86675,7 +86676,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "autoscaling.put_autoscaling_policy" @@ -86698,6 +86698,7 @@ "specLocation": "autoscaling/put_autoscaling_policy/PutAutoscalingPolicyRequest.ts#L24-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -86708,7 +86709,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "autoscaling.put_autoscaling_policy" @@ -87206,6 +87206,7 @@ }, "specLocation": "cat/_types/CatBase.ts#L402-L404", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -87224,8 +87225,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -87336,6 +87336,7 @@ }, "specLocation": "cat/_types/CatBase.ts#L559-L559", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -87354,8 +87355,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -87494,6 +87494,7 @@ }, "specLocation": "cat/_types/CatBase.ts#L558-L558", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -87512,11 +87513,11 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "interface", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -87535,7 +87536,6 @@ "namespace": "_types" } }, - "kind": "interface", "name": { "name": "CatRequestBase", "namespace": "cat._types" @@ -87666,6 +87666,7 @@ }, "specLocation": "cat/_types/CatBase.ts#L636-L638", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -87684,8 +87685,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -87940,6 +87940,7 @@ }, "specLocation": "cat/_types/CatBase.ts#L845-L845", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -87958,8 +87959,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -88068,6 +88068,7 @@ "specLocation": "cat/aliases/types.ts#L22-L53" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -88082,7 +88083,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.aliases" @@ -88118,6 +88118,7 @@ "specLocation": "cat/aliases/CatAliasesRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -88131,7 +88132,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.aliases" @@ -88165,6 +88165,7 @@ "name": "shards.undesired", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88180,8 +88181,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88193,6 +88193,7 @@ "name": "write_load.forecast", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88208,8 +88209,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88221,6 +88221,7 @@ "name": "disk.indices.forecast", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88236,8 +88237,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88249,6 +88249,7 @@ "name": "disk.indices", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88264,8 +88265,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88277,6 +88277,7 @@ "name": "disk.used", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88292,8 +88293,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88305,6 +88305,7 @@ "name": "disk.avail", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88320,8 +88321,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88333,6 +88333,7 @@ "name": "disk.total", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88348,8 +88349,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88361,6 +88361,7 @@ "name": "disk.percent", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88376,8 +88377,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88388,6 +88388,7 @@ "name": "host", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88403,8 +88404,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88412,6 +88412,7 @@ "name": "ip", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88427,8 +88428,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -88456,6 +88456,7 @@ "name": "node.role", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -88471,14 +88472,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], "specLocation": "cat/allocation/types.ts#L24-L98" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -88493,7 +88494,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.allocation" @@ -88529,6 +88529,7 @@ "specLocation": "cat/allocation/CatAllocationRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -88542,7 +88543,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.allocation" @@ -88637,6 +88637,7 @@ "specLocation": "cat/component_templates/types.ts#L20-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -88651,7 +88652,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.component_templates" @@ -88674,6 +88674,7 @@ "specLocation": "cat/component_templates/CatComponentTemplatesRequest.ts#L22-L39" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -88687,7 +88688,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.component_templates" @@ -88710,8 +88710,10 @@ "name": "epoch", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -88721,14 +88723,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -88773,6 +88773,7 @@ "specLocation": "cat/count/types.ts#L23-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -88787,7 +88788,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.count" @@ -88810,6 +88810,7 @@ "specLocation": "cat/count/CatCountRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -88823,7 +88824,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.count" @@ -88922,6 +88922,7 @@ "specLocation": "cat/fielddata/types.ts#L20-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -88936,7 +88937,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.fielddata" @@ -88984,6 +88984,7 @@ "specLocation": "cat/fielddata/CatFielddataRequest.ts#L23-L47" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -88997,7 +88998,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.fielddata" @@ -89019,8 +89019,10 @@ "name": "epoch", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -89030,14 +89032,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -89261,6 +89261,7 @@ "specLocation": "cat/health/types.ts#L23-L94" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -89275,7 +89276,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.health" @@ -89311,6 +89311,7 @@ "specLocation": "cat/health/CatHealthRequest.ts#L23-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -89324,7 +89325,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.health" @@ -89353,6 +89353,7 @@ "specLocation": "cat/help/types.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -89367,7 +89368,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.help" @@ -89377,6 +89377,7 @@ "specLocation": "cat/help/CatHelpRequest.ts#L22-L30" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -89390,7 +89391,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.help" @@ -89508,6 +89508,7 @@ "name": "docs.count", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -89523,8 +89524,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -89536,6 +89536,7 @@ "name": "docs.deleted", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -89551,8 +89552,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -89594,6 +89594,7 @@ "name": "store.size", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -89609,8 +89610,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -89618,6 +89618,7 @@ "name": "pri.store.size", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -89633,8 +89634,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -91446,6 +91446,7 @@ "specLocation": "cat/indices/types.ts#L20-L801" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -91460,7 +91461,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.indices" @@ -91558,6 +91558,7 @@ "specLocation": "cat/indices/CatIndicesRequest.ts#L24-L77" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -91571,7 +91572,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.indices" @@ -91643,6 +91643,7 @@ "specLocation": "cat/master/types.ts#L20-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -91657,7 +91658,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.master" @@ -91667,6 +91667,7 @@ "specLocation": "cat/master/CatMasterRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -91680,7 +91681,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.master" @@ -91945,6 +91945,7 @@ "specLocation": "cat/ml_data_frame_analytics/types.ts#L22-L102" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -91959,7 +91960,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.ml_data_frame_analytics" @@ -92044,6 +92044,7 @@ "specLocation": "cat/ml_data_frame_analytics/CatDataFrameAnalyticsRequest.ts#L24-L59" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -92057,7 +92058,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.ml_data_frame_analytics" @@ -92261,6 +92261,7 @@ "specLocation": "cat/ml_datafeeds/types.ts#L22-L87" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -92275,7 +92276,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.ml_datafeeds" @@ -92349,6 +92349,7 @@ "specLocation": "cat/ml_datafeeds/CatDatafeedsRequest.ts#L24-L74" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -92362,7 +92363,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.ml_datafeeds" @@ -93332,6 +93332,7 @@ "specLocation": "cat/ml_jobs/types.ts#L24-L347" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -93346,7 +93347,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.ml_jobs" @@ -93432,6 +93432,7 @@ "specLocation": "cat/ml_jobs/CatJobsRequest.ts#L24-L78" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -93445,7 +93446,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.ml_jobs" @@ -93453,6 +93453,7 @@ "specLocation": "cat/ml_jobs/CatJobsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -93467,7 +93468,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.ml_trained_models" @@ -93564,6 +93564,7 @@ "specLocation": "cat/ml_trained_models/CatTrainedModelsRequest.ts#L24-L64" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -93577,7 +93578,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.ml_trained_models" @@ -93988,6 +93988,7 @@ "specLocation": "cat/nodeattrs/types.ts#L20-L55" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -94002,7 +94003,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.nodeattrs" @@ -94012,6 +94012,7 @@ "specLocation": "cat/nodeattrs/CatNodeAttributesRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -94025,7 +94026,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.nodeattrs" @@ -95548,6 +95548,7 @@ "specLocation": "cat/nodes/types.ts#L23-L542" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -95562,7 +95563,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.nodes" @@ -95587,6 +95587,7 @@ "required": false, "serverDefault": "false", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -95602,8 +95603,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -95623,6 +95623,7 @@ "specLocation": "cat/nodes/CatNodesRequest.ts#L23-L49" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -95636,7 +95637,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.nodes" @@ -95714,6 +95714,7 @@ "specLocation": "cat/pending_tasks/types.ts#L20-L41" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -95728,7 +95729,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.pending_tasks" @@ -95738,6 +95738,7 @@ "specLocation": "cat/pending_tasks/CatPendingTasksRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -95751,7 +95752,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.pending_tasks" @@ -95856,6 +95856,7 @@ "specLocation": "cat/plugins/types.ts#L22-L52" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -95870,7 +95871,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.plugins" @@ -95880,6 +95880,7 @@ "specLocation": "cat/plugins/CatPluginsRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -95893,7 +95894,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.plugins" @@ -95962,6 +95962,7 @@ "name": "start_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -95971,7 +95972,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -96001,6 +96001,7 @@ "name": "stop_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -96010,7 +96011,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -96322,6 +96322,7 @@ "specLocation": "cat/recovery/types.ts#L24-L155" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -96336,7 +96337,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.recovery" @@ -96398,6 +96398,7 @@ "specLocation": "cat/recovery/CatRecoveryRequest.ts#L23-L59" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -96411,7 +96412,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.recovery" @@ -96459,6 +96459,7 @@ "specLocation": "cat/repositories/types.ts#L20-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -96473,7 +96474,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.repositories" @@ -96483,6 +96483,7 @@ "specLocation": "cat/repositories/CatRepositoriesRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -96496,7 +96497,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.repositories" @@ -96504,6 +96504,7 @@ "specLocation": "cat/repositories/CatRepositoriesResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -96518,7 +96519,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.segments" @@ -96554,6 +96554,7 @@ "specLocation": "cat/segments/CatSegmentsRequest.ts#L23-L49" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -96567,7 +96568,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.segments" @@ -96815,6 +96815,7 @@ "specLocation": "cat/segments/types.ts#L22-L107" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -96829,7 +96830,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.shards" @@ -96865,6 +96865,7 @@ "specLocation": "cat/shards/CatShardsRequest.ts#L23-L49" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -96878,7 +96879,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.shards" @@ -96965,6 +96965,7 @@ "name": "docs", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -96980,8 +96981,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -96992,6 +96992,7 @@ "name": "store", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -97007,8 +97008,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -97016,6 +97016,7 @@ "name": "ip", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -97031,8 +97032,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -97055,6 +97055,7 @@ "name": "node", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -97070,8 +97071,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -98133,6 +98133,7 @@ "specLocation": "cat/shards/types.ts#L20-L421" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -98147,7 +98148,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.snapshots" @@ -98184,6 +98184,7 @@ "specLocation": "cat/snapshots/CatSnapshotsRequest.ts#L23-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -98197,7 +98198,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.snapshots" @@ -98266,8 +98266,10 @@ "name": "start_epoch", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -98277,14 +98279,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -98316,8 +98316,10 @@ "name": "end_epoch", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -98327,14 +98329,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -98451,6 +98451,7 @@ "specLocation": "cat/snapshots/types.ts#L24-L96" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -98465,7 +98466,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.tasks" @@ -98531,6 +98531,7 @@ "specLocation": "cat/tasks/CatTasksRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -98544,7 +98545,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.tasks" @@ -98798,6 +98798,7 @@ "specLocation": "cat/tasks/types.ts#L22-L101" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -98812,7 +98813,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.templates" @@ -98835,6 +98835,7 @@ "specLocation": "cat/templates/CatTemplatesRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -98848,7 +98849,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.templates" @@ -98916,6 +98916,7 @@ "name": "version", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -98931,8 +98932,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -98954,6 +98954,7 @@ "specLocation": "cat/templates/types.ts#L22-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -98968,7 +98969,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.thread_pool" @@ -99004,6 +99004,7 @@ "specLocation": "cat/thread_pool/CatThreadPoolRequest.ts#L24-L48" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -99017,7 +99018,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.thread_pool" @@ -99279,6 +99279,7 @@ "name": "core", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99294,8 +99295,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -99306,6 +99306,7 @@ "name": "max", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99321,8 +99322,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -99333,6 +99333,7 @@ "name": "size", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99348,8 +99349,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -99360,6 +99360,7 @@ "name": "keep_alive", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99375,14 +99376,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], "specLocation": "cat/thread_pool/types.ts#L22-L124" }, { + "kind": "request", "attachedBehaviors": [ "CommonCatQueryParameters", "CommonQueryParameters" @@ -99397,7 +99398,6 @@ "namespace": "cat._types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cat.transforms" @@ -99497,6 +99497,7 @@ "specLocation": "cat/transforms/CatTransformsRequest.ts#L25-L78" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -99510,7 +99511,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cat.transforms" @@ -99591,6 +99591,7 @@ "name": "checkpoint_progress", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99606,8 +99607,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -99619,6 +99619,7 @@ "name": "last_search_time", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99634,8 +99635,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -99646,6 +99646,7 @@ "name": "changes_last_detection_time", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -99661,8 +99662,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -100418,6 +100418,7 @@ "name": "time_since_last_read_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -100427,7 +100428,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -100449,6 +100449,7 @@ "name": "total_read_remote_exec_time_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -100458,7 +100459,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -100480,6 +100480,7 @@ "name": "total_read_time_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -100489,7 +100490,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -100511,6 +100511,7 @@ "name": "total_write_time_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -100520,7 +100521,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -100553,6 +100553,7 @@ "specLocation": "ccr/_types/FollowIndexStats.ts#L35-L69" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -100566,7 +100567,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.delete_auto_follow_pattern" @@ -100589,6 +100589,7 @@ "specLocation": "ccr/delete_auto_follow_pattern/DeleteAutoFollowPatternRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -100599,7 +100600,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.delete_auto_follow_pattern" @@ -100607,6 +100607,7 @@ "specLocation": "ccr/delete_auto_follow_pattern/DeleteAutoFollowPatternResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -100754,7 +100755,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.follow" @@ -100790,6 +100790,7 @@ "specLocation": "ccr/follow/CreateFollowIndexRequest.ts#L25-L51" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -100828,7 +100829,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.follow" @@ -101037,6 +101037,7 @@ "specLocation": "ccr/follow_info/types.ts#L30-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101050,7 +101051,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.follow_info" @@ -101073,6 +101073,7 @@ "specLocation": "ccr/follow_info/FollowInfoRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -101092,7 +101093,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.follow_info" @@ -101100,6 +101100,7 @@ "specLocation": "ccr/follow_info/FollowInfoResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101113,7 +101114,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.follow_stats" @@ -101136,6 +101136,7 @@ "specLocation": "ccr/follow_stats/FollowIndexStatsRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -101155,7 +101156,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.follow_stats" @@ -101163,6 +101163,7 @@ "specLocation": "ccr/follow_stats/FollowIndexStatsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101222,7 +101223,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.forget_follower" @@ -101245,6 +101245,7 @@ "specLocation": "ccr/forget_follower/ForgetFollowerIndexRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -101261,7 +101262,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.forget_follower" @@ -101388,6 +101388,7 @@ "specLocation": "ccr/get_auto_follow_pattern/types.ts#L28-L52" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101401,7 +101402,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.get_auto_follow_pattern" @@ -101424,6 +101424,7 @@ "specLocation": "ccr/get_auto_follow_pattern/GetAutoFollowPatternRequest.ts#L23-L33" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -101443,7 +101444,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.get_auto_follow_pattern" @@ -101451,6 +101451,7 @@ "specLocation": "ccr/get_auto_follow_pattern/GetAutoFollowPatternResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101464,7 +101465,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.pause_auto_follow_pattern" @@ -101487,6 +101487,7 @@ "specLocation": "ccr/pause_auto_follow_pattern/PauseAutoFollowPatternRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -101497,7 +101498,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.pause_auto_follow_pattern" @@ -101505,6 +101505,7 @@ "specLocation": "ccr/pause_auto_follow_pattern/PauseAutoFollowPatternResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101518,7 +101519,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.pause_follow" @@ -101541,6 +101541,7 @@ "specLocation": "ccr/pause_follow/PauseFollowIndexRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -101551,7 +101552,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.pause_follow" @@ -101559,6 +101559,7 @@ "specLocation": "ccr/pause_follow/PauseFollowIndexResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101633,6 +101634,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -101640,7 +101642,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -101773,7 +101774,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.put_auto_follow_pattern" @@ -101796,6 +101796,7 @@ "specLocation": "ccr/put_auto_follow_pattern/PutAutoFollowPatternRequest.ts#L27-L112" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -101806,7 +101807,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.put_auto_follow_pattern" @@ -101814,6 +101814,7 @@ "specLocation": "ccr/put_auto_follow_pattern/PutAutoFollowPatternResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101827,7 +101828,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.resume_auto_follow_pattern" @@ -101850,6 +101850,7 @@ "specLocation": "ccr/resume_auto_follow_pattern/ResumeAutoFollowPatternRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -101860,7 +101861,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.resume_auto_follow_pattern" @@ -101868,6 +101868,7 @@ "specLocation": "ccr/resume_auto_follow_pattern/ResumeAutoFollowPatternResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -101993,7 +101994,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.resume_follow" @@ -102016,6 +102016,7 @@ "specLocation": "ccr/resume_follow/ResumeFollowIndexRequest.ts#L25-L46" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -102026,7 +102027,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.resume_follow" @@ -102137,6 +102137,7 @@ "name": "time_since_last_check_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -102146,7 +102147,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -102181,6 +102181,7 @@ "specLocation": "ccr/stats/types.ts.ts#L41-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -102194,7 +102195,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.stats" @@ -102204,6 +102204,7 @@ "specLocation": "ccr/stats/CcrStatsRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -102231,7 +102232,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.stats" @@ -102239,6 +102239,7 @@ "specLocation": "ccr/stats/CcrStatsResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -102252,7 +102253,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ccr.unfollow" @@ -102275,6 +102275,7 @@ "specLocation": "ccr/unfollow/UnfollowIndexRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -102285,7 +102286,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ccr.unfollow" @@ -102404,6 +102404,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102411,7 +102412,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102437,6 +102437,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102444,7 +102445,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102630,6 +102630,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102637,7 +102638,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102652,6 +102652,7 @@ "name": "shard_sizes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102659,7 +102660,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102674,6 +102674,7 @@ "name": "shard_data_set_sizes", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102681,7 +102682,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102696,6 +102696,7 @@ "name": "shard_paths", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102703,7 +102704,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102764,6 +102764,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102771,7 +102772,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -102942,6 +102942,7 @@ "name": "node_attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -102949,7 +102950,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -103073,6 +103073,7 @@ "specLocation": "cluster/allocation_explain/types.ts#L56-L60" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -103136,7 +103137,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.allocation_explain" @@ -103230,6 +103230,7 @@ "specLocation": "cluster/allocation_explain/types.ts#L71-L76" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -103259,6 +103260,7 @@ "name": "allocation_delay_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -103268,7 +103270,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -103384,6 +103385,7 @@ "name": "configured_delay_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -103393,7 +103395,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -103495,6 +103496,7 @@ "name": "remaining_delay_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -103504,7 +103506,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -103552,7 +103553,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.allocation_explain" @@ -103702,6 +103702,7 @@ "specLocation": "cluster/allocation_explain/types.ts#L127-L146" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -103715,7 +103716,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.delete_component_template" @@ -103765,6 +103765,7 @@ "specLocation": "cluster/delete_component_template/ClusterDeleteComponentTemplateRequest.ts#L24-L55" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -103775,7 +103776,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.delete_component_template" @@ -103783,6 +103783,7 @@ "specLocation": "cluster/delete_component_template/ClusterDeleteComponentTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -103796,7 +103797,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.delete_voting_config_exclusions" @@ -103820,10 +103820,10 @@ "specLocation": "cluster/delete_voting_config_exclusions/ClusterDeleteVotingConfigExclusionsRequest.ts#L22-L40" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.delete_voting_config_exclusions" @@ -103831,6 +103831,7 @@ "specLocation": "cluster/delete_voting_config_exclusions/ClusterDeleteVotingConfigExclusionsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -103844,7 +103845,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.exists_component_template" @@ -103894,10 +103894,10 @@ "specLocation": "cluster/exists_component_template/ClusterComponentTemplateExistsRequest.ts#L24-L55" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.exists_component_template" @@ -103905,6 +103905,7 @@ "specLocation": "cluster/exists_component_template/ClusterComponentTemplateExistsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -103918,7 +103919,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.get_component_template" @@ -104003,6 +104003,7 @@ "specLocation": "cluster/get_component_template/ClusterGetComponentTemplateRequest.ts#L24-L66" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -104022,7 +104023,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.get_component_template" @@ -104030,6 +104030,7 @@ "specLocation": "cluster/get_component_template/ClusterGetComponentTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -104043,7 +104044,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.get_settings" @@ -104106,6 +104106,7 @@ "specLocation": "cluster/get_settings/ClusterGetSettingsRequest.ts#L23-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -104113,6 +104114,7 @@ "name": "persistent", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104120,7 +104122,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -104131,6 +104132,7 @@ "name": "transient", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104138,7 +104140,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -104149,6 +104150,7 @@ "name": "defaults", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104156,7 +104158,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -104165,7 +104166,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.get_settings" @@ -104243,6 +104243,7 @@ "name": "indices", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104250,7 +104251,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -104361,6 +104361,7 @@ "name": "task_max_waiting_in_queue_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -104370,7 +104371,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -104481,6 +104481,7 @@ "name": "shards", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104488,7 +104489,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -104525,6 +104525,7 @@ "specLocation": "cluster/health/types.ts#L24-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -104538,7 +104539,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.health" @@ -104652,6 +104652,7 @@ "name": "wait_for_nodes", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -104667,8 +104668,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -104713,6 +104713,7 @@ "specLocation": "cluster/health/ClusterHealthRequest.ts#L32-L98" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -104740,7 +104741,6 @@ ] } ], - "kind": "response", "name": { "name": "Response", "namespace": "cluster.health" @@ -104824,6 +104824,7 @@ "specLocation": "cluster/health/types.ts#L36-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -104837,7 +104838,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.info" @@ -104860,6 +104860,7 @@ "specLocation": "cluster/info/ClusterInfoRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -104900,6 +104901,7 @@ "name": "thread_pool", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -104907,7 +104909,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -104931,7 +104932,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.info" @@ -105010,6 +105010,7 @@ "name": "time_in_queue_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -105019,7 +105020,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -105030,6 +105030,7 @@ "specLocation": "cluster/pending_tasks/types.ts#L23-L47" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -105043,7 +105044,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.pending_tasks" @@ -105080,6 +105080,7 @@ "specLocation": "cluster/pending_tasks/ClusterPendingTasksRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -105099,7 +105100,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.pending_tasks" @@ -105107,6 +105107,7 @@ "specLocation": "cluster/pending_tasks/ClusterPendingTasksResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -105120,7 +105121,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.post_voting_config_exclusions" @@ -105168,10 +105168,10 @@ "specLocation": "cluster/post_voting_config_exclusions/ClusterPostVotingConfigExclusionsRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.post_voting_config_exclusions" @@ -105179,6 +105179,7 @@ "specLocation": "cluster/post_voting_config_exclusions/ClusterPostVotingConfigExclusionsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -105242,7 +105243,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.put_component_template" @@ -105292,6 +105292,7 @@ "specLocation": "cluster/put_component_template/ClusterPutComponentTemplateRequest.ts#L25-L94" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -105302,7 +105303,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.put_component_template" @@ -105310,6 +105310,7 @@ "specLocation": "cluster/put_component_template/ClusterPutComponentTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -105320,6 +105321,7 @@ "name": "persistent", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -105327,7 +105329,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -105338,6 +105339,7 @@ "name": "transient", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -105345,7 +105347,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -105361,7 +105362,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.put_settings" @@ -105410,6 +105410,7 @@ "specLocation": "cluster/put_settings/ClusterPutSettingsRequest.ts#L25-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -105428,6 +105429,7 @@ "name": "persistent", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -105435,7 +105437,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -105446,6 +105447,7 @@ "name": "transient", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -105453,7 +105455,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -105462,7 +105463,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.put_settings" @@ -105477,6 +105477,7 @@ }, "specLocation": "cluster/remote_info/ClusterRemoteInfoResponse.ts#L29-L30", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -105492,8 +105493,7 @@ "namespace": "cluster.remote_info" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -105683,6 +105683,7 @@ "specLocation": "cluster/remote_info/ClusterRemoteInfoResponse.ts#L32-L40" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -105696,7 +105697,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.remote_info" @@ -105706,9 +105706,11 @@ "specLocation": "cluster/remote_info/ClusterRemoteInfoRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -105716,7 +105718,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -105727,7 +105728,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.remote_info" @@ -105860,9 +105860,9 @@ "specLocation": "cluster/reroute/types.ts#L78-L84" }, { + "kind": "interface", "docId": "modules-cluster", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/modules-cluster.html", - "kind": "interface", "name": { "name": "CommandAllocateReplicaAction", "namespace": "cluster.reroute" @@ -106015,6 +106015,7 @@ "specLocation": "cluster/reroute/types.ts#L60-L67" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -106045,7 +106046,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.reroute" @@ -106299,6 +106299,7 @@ "specLocation": "cluster/reroute/types.ts#L98-L105" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -106337,7 +106338,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.reroute" @@ -106345,6 +106345,7 @@ "specLocation": "cluster/reroute/ClusterRerouteResponse.ts#L23-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -106358,7 +106359,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.state" @@ -106495,13 +106495,13 @@ "specLocation": "cluster/state/ClusterStateRequest.ts#L29-L56" }, { + "kind": "response", "body": { "kind": "value", "value": { "kind": "user_defined_value" } }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.state" @@ -106834,8 +106834,8 @@ "specLocation": "cluster/stats/types.ts#L74-L107" }, { - "description": "Contains statistics about shards assigned to selected nodes.", "kind": "interface", + "description": "Contains statistics about shards assigned to selected nodes.", "name": { "name": "ClusterIndicesShards", "namespace": "cluster.stats" @@ -106960,6 +106960,7 @@ "name": "processor_stats", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -106967,7 +106968,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -106993,6 +106993,7 @@ "name": "max_uptime_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -107002,7 +107003,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -107191,6 +107191,7 @@ "name": "http_types", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -107198,7 +107199,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -107214,6 +107214,7 @@ "name": "transport_types", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -107221,7 +107222,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -107431,6 +107431,7 @@ "name": "discovery_types", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -107438,7 +107439,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -107935,6 +107935,7 @@ "name": "time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -107944,7 +107945,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -108539,6 +108539,7 @@ "specLocation": "cluster/stats/types.ts#L541-L568" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -108552,7 +108553,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "cluster.stats" @@ -108601,6 +108601,7 @@ "specLocation": "cluster/stats/ClusterStatsRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -108611,7 +108612,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "cluster.stats" @@ -108800,13 +108800,13 @@ "specLocation": "cluster/stats/types.ts#L169-L226" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "StatsResponseBase", "namespace": "cluster.stats" @@ -108955,6 +108955,7 @@ "name": "error", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -108970,8 +108971,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -109014,6 +109014,7 @@ "name": "index_name", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -109029,8 +109030,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -109379,6 +109379,7 @@ "name": "tooltip", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -109394,8 +109395,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -109455,6 +109455,7 @@ }, "specLocation": "connector/_types/Connector.ts#L101-L104", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -109462,7 +109463,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -109481,6 +109481,7 @@ }, "specLocation": "connector/_types/Connector.ts#L128-L128", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -109488,7 +109489,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -109776,6 +109776,7 @@ "name": "metadata", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -109783,7 +109784,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -110098,6 +110098,7 @@ "name": "value", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -110105,7 +110106,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -110920,6 +110920,7 @@ }, "specLocation": "connector/_types/Connector.ts#L50-L56", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -110956,8 +110957,7 @@ "namespace": "connector._types" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -110965,6 +110965,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -110978,7 +110979,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.check_in" @@ -111001,6 +111001,7 @@ "specLocation": "connector/check_in/ConnectorCheckInRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111017,7 +111018,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.check_in" @@ -111025,6 +111025,7 @@ "specLocation": "connector/check_in/ConnectorCheckInResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111038,7 +111039,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.delete" @@ -111074,6 +111074,7 @@ "specLocation": "connector/delete/ConnectorDeleteRequest.ts#L22-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -111084,7 +111085,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.delete" @@ -111092,6 +111092,7 @@ "specLocation": "connector/delete/ConnectorDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111105,7 +111106,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.get" @@ -111128,6 +111128,7 @@ "specLocation": "connector/get/ConnectorGetRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -111138,7 +111139,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.get" @@ -111146,6 +111146,7 @@ "specLocation": "connector/get/ConnectorGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111289,7 +111290,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.last_sync" @@ -111312,6 +111312,7 @@ "specLocation": "connector/last_sync/ConnectorUpdateLastSyncRequest.ts#L26-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111328,7 +111329,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.last_sync" @@ -111336,6 +111336,7 @@ "specLocation": "connector/last_sync/ConnectorUpdateLastSyncResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111349,7 +111350,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.list" @@ -111432,6 +111432,7 @@ "specLocation": "connector/list/ConnectorListRequest.ts#L23-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111462,7 +111463,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.list" @@ -111470,6 +111470,7 @@ "specLocation": "connector/list/ConnectorListResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111551,7 +111552,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.post" @@ -111561,6 +111561,7 @@ "specLocation": "connector/post/ConnectorPostRequest.ts#L22-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111588,7 +111589,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.post" @@ -111596,6 +111596,7 @@ "specLocation": "connector/post/ConnectorPostResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111677,7 +111678,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.put" @@ -111700,6 +111700,7 @@ "specLocation": "connector/put/ConnectorPutRequest.ts#L22-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111727,7 +111728,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.put" @@ -111735,6 +111735,7 @@ "specLocation": "connector/put/ConnectorPutResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111748,7 +111749,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.sync_job_cancel" @@ -111771,6 +111771,7 @@ "specLocation": "connector/sync_job_cancel/SyncJobCancelRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -111787,7 +111788,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.sync_job_cancel" @@ -111795,6 +111795,7 @@ "specLocation": "connector/sync_job_cancel/SyncJobCancelResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111808,7 +111809,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.sync_job_delete" @@ -111831,6 +111831,7 @@ "specLocation": "connector/sync_job_delete/SyncJobDeleteRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -111841,7 +111842,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.sync_job_delete" @@ -111849,6 +111849,7 @@ "specLocation": "connector/sync_job_delete/SyncJobDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111862,7 +111863,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.sync_job_get" @@ -111885,6 +111885,7 @@ "specLocation": "connector/sync_job_get/SyncJobGetRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -111895,7 +111896,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.sync_job_get" @@ -111903,6 +111903,7 @@ "specLocation": "connector/sync_job_get/SyncJobGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -111916,7 +111917,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.sync_job_list" @@ -111976,6 +111976,7 @@ "name": "job_type", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -111994,14 +111995,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "connector/sync_job_list/SyncJobListRequest.ts#L25-L55" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112032,7 +112033,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.sync_job_list" @@ -112040,6 +112040,7 @@ "specLocation": "connector/sync_job_list/SyncJobListResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112089,7 +112090,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.sync_job_post" @@ -112099,6 +112099,7 @@ "specLocation": "connector/sync_job_post/SyncJobPostRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112115,7 +112116,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.sync_job_post" @@ -112123,6 +112123,7 @@ "specLocation": "connector/sync_job_post/SyncJobPostResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112136,7 +112137,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_active_filtering" @@ -112159,6 +112159,7 @@ "specLocation": "connector/update_active_filtering/ConnectorUpdateActiveFilteringRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112175,7 +112176,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_active_filtering" @@ -112183,6 +112183,7 @@ "specLocation": "connector/update_active_filtering/ConnectorUpdateActiveFilteringResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112220,7 +112221,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_api_key_id" @@ -112243,6 +112243,7 @@ "specLocation": "connector/update_api_key_id/ConnectorUpdateAPIKeyIDRequest.ts#L21-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112259,7 +112260,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_api_key_id" @@ -112267,6 +112267,7 @@ "specLocation": "connector/update_api_key_id/ConnectorUpdateAPIKeyIDResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112288,6 +112289,7 @@ "name": "values", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -112295,7 +112297,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -112311,7 +112312,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_configuration" @@ -112334,6 +112334,7 @@ "specLocation": "connector/update_configuration/ConnectorUpdateConfigurationRequest.ts#L25-L47" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112350,7 +112351,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_configuration" @@ -112358,6 +112358,7 @@ "specLocation": "connector/update_configuration/ConnectorUpdateConfigurationResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112368,6 +112369,7 @@ "name": "error", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -112377,7 +112379,6 @@ } } ], - "kind": "instance_of", "type": { "name": "WithNullValue", "namespace": "_spec_utils" @@ -112393,7 +112394,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_error" @@ -112416,6 +112416,7 @@ "specLocation": "connector/update_error/ConnectorUpdateErrorRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112432,7 +112433,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_error" @@ -112440,6 +112440,7 @@ "specLocation": "connector/update_error/ConnectorUpdateErrorResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112494,7 +112495,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_filtering" @@ -112517,6 +112517,7 @@ "specLocation": "connector/update_filtering/ConnectorUpdateFilteringRequest.ts#L27-L50" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112533,7 +112534,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_filtering" @@ -112541,6 +112541,7 @@ "specLocation": "connector/update_filtering/ConnectorUpdateFilteringResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112567,7 +112568,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_filtering_validation" @@ -112590,6 +112590,7 @@ "specLocation": "connector/update_filtering_validation/ConnectorUpdateFilteringValidationRequest.ts#L23-L40" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112606,7 +112607,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_filtering_validation" @@ -112614,6 +112614,7 @@ "specLocation": "connector/update_filtering_validation/ConnectorUpdateFilteringValidationResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112624,6 +112625,7 @@ "name": "index_name", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -112633,7 +112635,6 @@ } } ], - "kind": "instance_of", "type": { "name": "WithNullValue", "namespace": "_spec_utils" @@ -112649,7 +112650,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_index_name" @@ -112672,6 +112672,7 @@ "specLocation": "connector/update_index_name/ConnectorUpdateIndexNameRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112688,7 +112689,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_index_name" @@ -112696,6 +112696,7 @@ "specLocation": "connector/update_index_name/ConnectorUpdateIndexNameResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112733,7 +112734,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_name" @@ -112756,6 +112756,7 @@ "specLocation": "connector/update_name/ConnectorUpdateNameRequest.ts#L22-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112772,7 +112773,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_name" @@ -112780,6 +112780,7 @@ "specLocation": "connector/update_name/ConnectorUpdateNameResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112806,7 +112807,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_native" @@ -112829,6 +112829,7 @@ "specLocation": "connector/update_native/ConnectorUpdateNativeRequest.ts#L22-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112845,7 +112846,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_native" @@ -112853,6 +112853,7 @@ "specLocation": "connector/update_native/ConnectorUpdateNativeResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112879,7 +112880,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_pipeline" @@ -112902,6 +112902,7 @@ "specLocation": "connector/update_pipeline/ConnectorUpdatePipelineRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112918,7 +112919,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_pipeline" @@ -112926,6 +112926,7 @@ "specLocation": "connector/update_pipeline/ConnectorUpdatePipelineResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -112952,7 +112953,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_scheduling" @@ -112975,6 +112975,7 @@ "specLocation": "connector/update_scheduling/ConnectorUpdateSchedulingRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -112991,7 +112992,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_scheduling" @@ -112999,6 +112999,7 @@ "specLocation": "connector/update_scheduling/ConnectorUpdateSchedulingResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113025,7 +113026,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_service_type" @@ -113048,6 +113048,7 @@ "specLocation": "connector/update_service_type/ConnectorUpdateServiceTypeRequest.ts#L22-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -113064,7 +113065,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_service_type" @@ -113072,6 +113072,7 @@ "specLocation": "connector/update_service_type/ConnectorUpdateServiceTypeResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113098,7 +113099,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "connector.update_status" @@ -113121,6 +113121,7 @@ "specLocation": "connector/update_status/ConnectorUpdateStatusRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -113137,7 +113138,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "connector.update_status" @@ -113145,6 +113145,7 @@ "specLocation": "connector/update_status/ConnectorUpdateStatusResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113158,7 +113159,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "dangling_indices.delete_dangling_index" @@ -113218,6 +113218,7 @@ "specLocation": "dangling_indices/delete_dangling_index/DeleteDanglingIndexRequest.ts#L24-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -113228,7 +113229,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "dangling_indices.delete_dangling_index" @@ -113236,6 +113236,7 @@ "specLocation": "dangling_indices/delete_dangling_index/DeleteDanglingIndexResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113249,7 +113250,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "dangling_indices.import_dangling_index" @@ -113309,6 +113309,7 @@ "specLocation": "dangling_indices/import_dangling_index/ImportDanglingIndexRequest.ts#L24-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -113319,7 +113320,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "dangling_indices.import_dangling_index" @@ -113359,6 +113359,7 @@ "name": "creation_date_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -113368,7 +113369,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -113390,6 +113390,7 @@ "specLocation": "dangling_indices/list_dangling_indices/ListDanglingIndicesResponse.ts#L29-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113403,7 +113404,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "dangling_indices.list_dangling_indices" @@ -113413,6 +113413,7 @@ "specLocation": "dangling_indices/list_dangling_indices/ListDanglingIndicesRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -113432,7 +113433,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "dangling_indices.list_dangling_indices" @@ -113545,6 +113545,7 @@ "name": "config", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -113552,7 +113553,6 @@ "namespace": "enrich._types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -113567,6 +113567,7 @@ "specLocation": "enrich/_types/Policy.ts#L24-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113580,7 +113581,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "enrich.delete_policy" @@ -113603,6 +113603,7 @@ "specLocation": "enrich/delete_policy/DeleteEnrichPolicyRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -113613,7 +113614,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "enrich.delete_policy" @@ -113664,6 +113664,7 @@ "specLocation": "enrich/execute_policy/types.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113677,7 +113678,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "enrich.execute_policy" @@ -113714,6 +113714,7 @@ "specLocation": "enrich/execute_policy/ExecuteEnrichPolicyRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -113741,7 +113742,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "enrich.execute_policy" @@ -113749,6 +113749,7 @@ "specLocation": "enrich/execute_policy/ExecuteEnrichPolicyResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113762,7 +113763,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "enrich.get_policy" @@ -113785,6 +113785,7 @@ "specLocation": "enrich/get_policy/GetEnrichPolicyRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -113804,7 +113805,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "enrich.get_policy" @@ -113812,6 +113812,7 @@ "specLocation": "enrich/get_policy/GetEnrichPolicyResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -113863,7 +113864,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "enrich.put_policy" @@ -113886,6 +113886,7 @@ "specLocation": "enrich/put_policy/PutEnrichPolicyRequest.ts#L24-L53" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -113896,7 +113897,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "enrich.put_policy" @@ -114066,6 +114066,7 @@ "specLocation": "enrich/stats/types.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -114079,7 +114080,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "enrich.stats" @@ -114089,6 +114089,7 @@ "specLocation": "enrich/stats/EnrichStatsRequest.ts#L22-L29" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -114145,7 +114146,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "enrich.stats" @@ -114153,13 +114153,13 @@ "specLocation": "enrich/stats/EnrichStatsResponse.ts#L22-L39" }, { + "kind": "interface", "generics": [ { "name": "TEvent", "namespace": "eql._types.EqlHits" } ], - "kind": "interface", "name": { "name": "EqlHits", "namespace": "eql._types" @@ -114184,6 +114184,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114193,7 +114194,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsEvent", "namespace": "eql._types" @@ -114210,6 +114210,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114219,7 +114220,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsSequence", "namespace": "eql._types" @@ -114231,13 +114231,13 @@ "specLocation": "eql/_types/EqlHits.ts#L25-L39" }, { + "kind": "interface", "generics": [ { "name": "TEvent", "namespace": "eql._types.EqlSearchResponseBase" } ], - "kind": "interface", "name": { "name": "EqlSearchResponseBase", "namespace": "eql._types" @@ -114284,6 +114284,7 @@ "name": "took", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114293,7 +114294,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -114317,6 +114317,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114326,7 +114327,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EqlHits", "namespace": "eql._types" @@ -114337,13 +114337,13 @@ "specLocation": "eql/_types/EqlSearchResponseBase.ts#L25-L50" }, { + "kind": "interface", "generics": [ { "name": "TEvent", "namespace": "eql._types.HitsEvent" } ], - "kind": "interface", "name": { "name": "HitsEvent", "namespace": "eql._types" @@ -114403,6 +114403,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -114410,7 +114411,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -114424,13 +114424,13 @@ "specLocation": "eql/_types/EqlHits.ts#L41-L54" }, { + "kind": "interface", "generics": [ { "name": "TEvent", "namespace": "eql._types.HitsSequence" } ], - "kind": "interface", "name": { "name": "HitsSequence", "namespace": "eql._types" @@ -114443,6 +114443,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114452,7 +114453,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsEvent", "namespace": "eql._types" @@ -114477,6 +114477,7 @@ "specLocation": "eql/_types/EqlHits.ts#L56-L64" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -114490,7 +114491,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "eql.delete" @@ -114513,6 +114513,7 @@ "specLocation": "eql/delete/EqlDeleteRequest.ts#L23-L39" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -114523,7 +114524,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "eql.delete" @@ -114531,6 +114531,7 @@ "specLocation": "eql/delete/EqlDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -114544,7 +114545,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "eql.get" @@ -114592,9 +114592,11 @@ "specLocation": "eql/get/EqlGetRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114604,7 +114606,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EqlSearchResponseBase", "namespace": "eql._types" @@ -114617,7 +114618,6 @@ "namespace": "eql.get.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "eql.get" @@ -114625,6 +114625,7 @@ "specLocation": "eql/get/EqlGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -114638,7 +114639,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "eql.get_status" @@ -114661,6 +114661,7 @@ "specLocation": "eql/get_status/EqlGetStatusRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -114705,6 +114706,7 @@ "name": "start_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114714,7 +114716,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -114726,6 +114727,7 @@ "name": "expiration_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -114735,7 +114737,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -114756,7 +114757,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "eql.get_status" @@ -114764,6 +114764,7 @@ "specLocation": "eql/get_status/EqlGetStatusResponse.ts#L24-L51" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -114852,6 +114853,7 @@ "name": "filter", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -114870,8 +114872,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -114926,6 +114927,7 @@ "name": "fields", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -114944,8 +114946,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -114986,7 +114987,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "eql.search" @@ -115085,9 +115085,11 @@ "specLocation": "eql/search/EqlSearchRequest.ts#L28-L118" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -115097,7 +115099,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EqlSearchResponseBase", "namespace": "eql._types" @@ -115110,7 +115111,6 @@ "namespace": "eql.search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "eql.search" @@ -115212,6 +115212,7 @@ }, "specLocation": "esql/_types/TableValuesContainer.ts#L30-L30", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115230,8 +115231,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -115242,6 +115242,7 @@ }, "specLocation": "esql/_types/TableValuesContainer.ts#L31-L31", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115260,8 +115261,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -115272,6 +115272,7 @@ }, "specLocation": "esql/_types/TableValuesContainer.ts#L33-L33", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115290,8 +115291,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -115302,6 +115302,7 @@ }, "specLocation": "esql/_types/TableValuesContainer.ts#L32-L32", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115320,11 +115321,11 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -115412,6 +115413,7 @@ "name": "tables", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -115419,9 +115421,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -115429,7 +115431,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -115450,7 +115451,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "esql.query" @@ -115498,6 +115498,7 @@ "specLocation": "esql/query/QueryRequest.ts#L26-L89" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -115508,7 +115509,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "esql.query" @@ -115548,6 +115548,7 @@ "specLocation": "features/_types/Feature.ts#L20-L23" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -115561,7 +115562,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "features.get_features" @@ -115571,6 +115571,7 @@ "specLocation": "features/get_features/GetFeaturesRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -115590,7 +115591,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "features.get_features" @@ -115598,6 +115598,7 @@ "specLocation": "features/get_features/GetFeaturesResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -115611,7 +115612,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "features.reset_features" @@ -115621,6 +115621,7 @@ "specLocation": "features/reset_features/ResetFeaturesRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -115640,7 +115641,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "features.reset_features" @@ -115663,6 +115663,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -115676,7 +115677,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "fleet.global_checkpoints" @@ -115687,6 +115687,7 @@ "name": "index", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115702,8 +115703,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } } ], @@ -115767,6 +115767,7 @@ "specLocation": "fleet/global_checkpoints/GlobalCheckpointsRequest.ts#L25-L63" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -115797,7 +115798,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "fleet.global_checkpoints" @@ -115805,12 +115805,13 @@ "specLocation": "fleet/global_checkpoints/GlobalCheckpointsResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "searches", "kind": "value", + "codegenName": "searches", "value": { "kind": "array_of", "value": { @@ -115829,7 +115830,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "fleet.msearch" @@ -115840,6 +115840,7 @@ "name": "index", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -115855,8 +115856,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } } ], @@ -116032,6 +116032,7 @@ "specLocation": "fleet/msearch/MultiSearchRequest.ts#L32-L115" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -116041,6 +116042,7 @@ "type": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -116050,7 +116052,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseItem", "namespace": "_global.msearch" @@ -116066,7 +116067,6 @@ "namespace": "fleet.msearch.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "fleet.msearch" @@ -116074,6 +116074,7 @@ "specLocation": "fleet/msearch/MultiSearchResponse.ts#L25-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -116087,6 +116088,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -116094,7 +116096,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -116134,6 +116135,7 @@ "name": "ext", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -116141,7 +116143,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -116191,6 +116192,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -116198,7 +116200,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -116275,6 +116276,7 @@ "name": "rescore", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -116293,8 +116295,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -116302,6 +116303,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -116309,7 +116311,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -116529,7 +116530,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "fleet.search" @@ -116540,6 +116540,7 @@ "name": "index", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -116555,8 +116556,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } } ], @@ -117021,6 +117021,7 @@ "name": "sort", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -117039,8 +117040,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -117075,6 +117075,7 @@ "specLocation": "fleet/search/SearchRequest.ts#L55-L260" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -117115,6 +117116,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -117124,7 +117126,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -117135,6 +117136,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -117142,7 +117144,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -117168,6 +117169,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -117175,7 +117177,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -117241,6 +117242,7 @@ "name": "suggest", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -117248,11 +117250,11 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -117262,7 +117264,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Suggest", "namespace": "_global.search._types" @@ -117290,7 +117291,6 @@ "namespace": "fleet.search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "fleet.search" @@ -117671,6 +117671,7 @@ "specLocation": "graph/_types/Vertex.ts#L61-L64" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -117737,7 +117738,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "graph.explore" @@ -117785,6 +117785,7 @@ "specLocation": "graph/explore/GraphExploreRequest.ts#L28-L72" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -117854,7 +117855,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "graph.explore" @@ -118064,6 +118064,7 @@ "name": "include", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -118071,7 +118072,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -118086,6 +118086,7 @@ "name": "exclude", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -118093,7 +118094,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -118108,6 +118108,7 @@ "name": "require", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -118115,7 +118116,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -118258,6 +118258,7 @@ "name": "min_age", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -118273,8 +118274,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } } ], @@ -118615,6 +118615,7 @@ "specLocation": "ilm/_types/Phase.ts#L148-L150" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -118628,7 +118629,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.delete_lifecycle" @@ -118679,6 +118679,7 @@ "specLocation": "ilm/delete_lifecycle/DeleteLifecycleRequest.ts#L24-L51" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -118689,7 +118690,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.delete_lifecycle" @@ -118704,6 +118704,7 @@ }, "specLocation": "ilm/explain_lifecycle/types.ts#L59-L62", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -118719,8 +118720,7 @@ "namespace": "ilm.explain_lifecycle" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -118760,6 +118760,7 @@ "name": "action_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -118769,7 +118770,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -118835,6 +118835,7 @@ "name": "index_creation_date_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -118844,7 +118845,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -118877,6 +118877,7 @@ "name": "lifecycle_date_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -118886,7 +118887,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -118927,6 +118927,7 @@ "name": "phase_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -118936,7 +118937,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -118969,6 +118969,7 @@ "name": "step_info", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -118976,7 +118977,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -118998,6 +118998,7 @@ "name": "step_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -119007,7 +119008,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -119072,6 +119072,7 @@ "name": "modified_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -119081,7 +119082,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -119121,6 +119121,7 @@ "specLocation": "ilm/explain_lifecycle/types.ts#L54-L57" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119134,7 +119135,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.explain_lifecycle" @@ -119208,6 +119208,7 @@ "specLocation": "ilm/explain_lifecycle/ExplainLifecycleRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -119215,6 +119216,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -119222,7 +119224,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -119235,7 +119236,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.explain_lifecycle" @@ -119286,6 +119286,7 @@ "specLocation": "ilm/get_lifecycle/types.ts#L24-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119299,7 +119300,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.get_lifecycle" @@ -119350,9 +119350,11 @@ "specLocation": "ilm/get_lifecycle/GetLifecycleRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -119360,7 +119362,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -119371,7 +119372,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.get_lifecycle" @@ -119379,6 +119379,7 @@ "specLocation": "ilm/get_lifecycle/GetLifecycleResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119392,7 +119393,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.get_status" @@ -119402,6 +119402,7 @@ "specLocation": "ilm/get_status/GetIlmStatusRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -119418,7 +119419,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.get_status" @@ -119426,6 +119426,7 @@ "specLocation": "ilm/get_status/GetIlmStatusResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119463,7 +119464,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.migrate_to_data_tiers" @@ -119487,6 +119487,7 @@ "specLocation": "ilm/migrate_to_data_tiers/Request.ts#L22-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -119581,7 +119582,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.migrate_to_data_tiers" @@ -119589,6 +119589,7 @@ "specLocation": "ilm/migrate_to_data_tiers/Response.ts#L22-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119626,7 +119627,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.move_to_step" @@ -119649,6 +119649,7 @@ "specLocation": "ilm/move_to_step/MoveToStepRequest.ts#L24-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -119659,7 +119660,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.move_to_step" @@ -119710,6 +119710,7 @@ "specLocation": "ilm/move_to_step/types.ts#L20-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119736,7 +119737,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.put_lifecycle" @@ -119787,6 +119787,7 @@ "specLocation": "ilm/put_lifecycle/PutLifecycleRequest.ts#L25-L55" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -119797,7 +119798,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.put_lifecycle" @@ -119805,6 +119805,7 @@ "specLocation": "ilm/put_lifecycle/PutLifecycleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119818,7 +119819,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.remove_policy" @@ -119841,6 +119841,7 @@ "specLocation": "ilm/remove_policy/RemovePolicyRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -119871,7 +119872,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.remove_policy" @@ -119879,6 +119879,7 @@ "specLocation": "ilm/remove_policy/RemovePolicyResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119892,7 +119893,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.retry" @@ -119915,6 +119915,7 @@ "specLocation": "ilm/retry/RetryIlmRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -119925,7 +119926,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.retry" @@ -119933,6 +119933,7 @@ "specLocation": "ilm/retry/RetryIlmResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -119946,7 +119947,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.start" @@ -119979,6 +119979,7 @@ "specLocation": "ilm/start/StartIlmRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -119989,7 +119990,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.start" @@ -119997,6 +119997,7 @@ "specLocation": "ilm/start/StartIlmResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -120010,7 +120011,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ilm.stop" @@ -120043,6 +120043,7 @@ "specLocation": "ilm/stop/StopIlmRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -120053,7 +120054,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ilm.stop" @@ -120560,8 +120560,8 @@ "specLocation": "indices/_types/DataStream.ts#L136-L157" }, { - "description": "Data stream lifecycle denotes that a data stream is managed by the data stream lifecycle and contains the configuration.", "kind": "interface", + "description": "Data stream lifecycle denotes that a data stream is managed by the data stream lifecycle and contains the configuration.", "name": { "name": "DataStreamLifecycle", "namespace": "indices._types" @@ -120738,8 +120738,8 @@ "specLocation": "indices/_types/DataStreamLifecycle.ts#L57-L69" }, { - "description": "Data stream lifecycle with rollover can be used to display the configuration including the default rollover conditions,\nif asked.", "kind": "interface", + "description": "Data stream lifecycle with rollover can be used to display the configuration including the default rollover conditions,\nif asked.", "name": { "name": "DataStreamLifecycleWithRollover", "namespace": "indices._types" @@ -120973,8 +120973,8 @@ "specLocation": "indices/_types/FielddataFrequencyFilter.ts#L22-L26" }, { - "esQuirk": "This is a boolean that evolved into an enum. ES also accepts plain booleans for true and false.", "kind": "enum", + "esQuirk": "This is a boolean that evolved into an enum. ES also accepts plain booleans for true and false.", "members": [ { "name": "true" @@ -121089,6 +121089,7 @@ "name": "threshold_enabled", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121104,8 +121105,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -121251,6 +121251,7 @@ "name": "order", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121269,14 +121270,14 @@ } } } - ], - "kind": "union_of" + ] } }, { "name": "mode", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121295,14 +121296,14 @@ } } } - ], - "kind": "union_of" + ] } }, { "name": "missing", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121321,8 +121322,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -121339,6 +121339,7 @@ "name": "read_only", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121348,7 +121349,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121359,6 +121359,7 @@ "name": "read_only_allow_delete", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121368,7 +121369,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121379,6 +121379,7 @@ "name": "read", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121388,7 +121389,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121399,6 +121399,7 @@ "name": "write", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121408,7 +121409,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121419,6 +121419,7 @@ "name": "metadata", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121428,7 +121429,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121439,6 +121439,7 @@ "specLocation": "indices/_types/IndexSettings.ts#L254-L260" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -121468,7 +121469,6 @@ ], "docId": "index-modules-settings", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/index-modules.html#index-modules-settings", - "kind": "interface", "name": { "name": "IndexSettings", "namespace": "indices._types" @@ -121500,6 +121500,7 @@ "name": "routing_path", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121518,8 +121519,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -121549,6 +121549,7 @@ "required": false, "serverDefault": "1", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121564,8 +121565,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -121573,6 +121573,7 @@ "required": false, "serverDefault": "0", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121588,8 +121589,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -121632,6 +121632,7 @@ "required": false, "serverDefault": "1", "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121641,7 +121642,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -121665,6 +121665,7 @@ "required": false, "serverDefault": "false", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -121680,8 +121681,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -121956,8 +121956,10 @@ "name": "creation_date", "required": false, "type": { + "kind": "instance_of", "generics": [ { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -121967,14 +121969,12 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -122018,6 +122018,7 @@ "name": "verified_before_close", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -122033,14 +122034,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "format", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -122056,8 +122057,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, { @@ -122097,6 +122097,7 @@ "name": "priority", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -122112,8 +122113,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -122176,6 +122176,7 @@ "name": "similarity", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122183,7 +122184,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122255,6 +122255,7 @@ "name": "analyzer", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122262,7 +122263,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122277,6 +122277,7 @@ "name": "char_filter", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122284,7 +122285,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122299,6 +122299,7 @@ "name": "filter", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122306,7 +122307,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122321,6 +122321,7 @@ "name": "normalizer", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122328,7 +122329,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122343,6 +122343,7 @@ "name": "tokenizer", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122350,7 +122351,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122389,6 +122389,7 @@ "required": false, "serverDefault": "false", "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -122398,7 +122399,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -122522,6 +122522,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122529,7 +122530,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -122767,6 +122767,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -122774,7 +122775,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -123008,10 +123008,10 @@ "specLocation": "indices/_types/DataStream.ts#L32-L37" }, { + "kind": "interface", "description": "Mapping Limit Settings", "docId": "mapping-settings-limit", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/mapping-settings-limit.html", - "kind": "interface", "name": { "name": "MappingLimitSettings", "namespace": "indices._types" @@ -123289,6 +123289,7 @@ "name": "max_thread_count", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -123298,7 +123299,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -123309,6 +123309,7 @@ "name": "max_merge_count", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -123318,7 +123319,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -123503,6 +123503,7 @@ "required": false, "serverDefault": "10000", "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -123512,7 +123513,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -123555,6 +123555,7 @@ "name": "lenient", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -123564,7 +123565,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -123614,6 +123614,7 @@ }, "specLocation": "indices/_types/IndexSettings.ts#L171-L182", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -123671,8 +123672,7 @@ "namespace": "indices._types" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -124186,8 +124186,8 @@ "specLocation": "indices/_types/IndexSettings.ts#L509-L518" }, { - "isOpen": true, "kind": "enum", + "isOpen": true, "members": [ { "description": "Default file system implementation. This will pick the best implementation depending on the operating environment, which\nis currently hybridfs on all supported systems but is subject to change.", @@ -124223,6 +124223,7 @@ "name": "aliases", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -124230,7 +124231,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -124281,6 +124281,7 @@ "name": "settings", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -124288,7 +124289,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -124484,6 +124484,7 @@ "specLocation": "indices/add_block/IndicesAddBlockResponse.ts#L30-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -124497,7 +124498,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.add_block" @@ -124593,6 +124593,7 @@ "specLocation": "indices/add_block/IndicesAddBlockRequest.ts#L24-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -124634,7 +124635,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.add_block" @@ -124859,6 +124859,7 @@ "specLocation": "indices/analyze/types.ts#L46-L49" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -124886,7 +124887,6 @@ } } ], - "kind": "interface", "name": { "name": "ExplainAnalyzeToken", "namespace": "indices.analyze" @@ -124995,6 +124995,7 @@ "specLocation": "indices/analyze/types.ts#L52-L67" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -125138,7 +125139,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.analyze" @@ -125163,6 +125163,7 @@ "specLocation": "indices/analyze/IndicesAnalyzeRequest.ts#L27-L92" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -125193,7 +125194,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.analyze" @@ -125208,6 +125208,7 @@ }, "specLocation": "indices/analyze/types.ts#L69-L69", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -125226,8 +125227,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -125266,6 +125266,7 @@ "specLocation": "indices/analyze/types.ts#L71-L74" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -125279,7 +125280,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.clear_cache" @@ -125390,6 +125390,7 @@ "specLocation": "indices/clear_cache/IndicesIndicesClearCacheRequest.ts#L23-L77" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -125400,7 +125401,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.clear_cache" @@ -125408,6 +125408,7 @@ "specLocation": "indices/clear_cache/IndicesClearCacheResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -125419,6 +125420,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -125426,7 +125428,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -125444,6 +125445,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -125451,7 +125453,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -125467,7 +125468,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.clone" @@ -125544,6 +125544,7 @@ "specLocation": "indices/clone/IndicesCloneRequest.ts#L27-L75" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -125582,7 +125583,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.clone" @@ -125611,6 +125611,7 @@ "name": "shards", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -125618,7 +125619,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -125657,6 +125657,7 @@ "specLocation": "indices/close/CloseIndexResponse.ts#L37-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -125670,7 +125671,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.close" @@ -125772,6 +125772,7 @@ "specLocation": "indices/close/CloseIndexRequest.ts#L24-L77" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -125790,6 +125791,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -125797,7 +125799,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -125821,7 +125822,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.close" @@ -125829,6 +125829,7 @@ "specLocation": "indices/close/CloseIndexResponse.ts#L24-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -125840,6 +125841,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -125847,7 +125849,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -125893,7 +125894,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.create" @@ -125956,6 +125956,7 @@ "specLocation": "indices/create/IndicesCreateRequest.ts#L28-L82" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -125994,7 +125995,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.create" @@ -126002,6 +126002,7 @@ "specLocation": "indices/create/IndicesCreateResponse.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126015,7 +126016,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.create_data_stream" @@ -126065,6 +126065,7 @@ "specLocation": "indices/create_data_stream/IndicesCreateDataStreamRequest.ts#L24-L57" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126075,7 +126076,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.create_data_stream" @@ -126118,6 +126118,7 @@ "name": "maximum_timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -126127,7 +126128,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -126162,6 +126162,7 @@ "specLocation": "indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts#L45-L65" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126175,7 +126176,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.data_streams_stats" @@ -126212,6 +126212,7 @@ "specLocation": "indices/data_streams_stats/IndicesDataStreamsStatsRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -126292,7 +126293,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.data_streams_stats" @@ -126300,6 +126300,7 @@ "specLocation": "indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts#L25-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126313,7 +126314,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete" @@ -126402,6 +126402,7 @@ "specLocation": "indices/delete/IndicesDeleteRequest.ts#L24-L74" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126412,7 +126413,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete" @@ -126420,6 +126420,7 @@ "specLocation": "indices/delete/IndicesDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126433,7 +126434,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete_alias" @@ -126495,6 +126495,7 @@ "specLocation": "indices/delete_alias/IndicesDeleteAliasRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126505,7 +126506,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete_alias" @@ -126513,6 +126513,7 @@ "specLocation": "indices/delete_alias/IndicesDeleteAliasResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126526,7 +126527,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete_data_lifecycle" @@ -126586,6 +126586,7 @@ "specLocation": "indices/delete_data_lifecycle/IndicesDeleteDataLifecycleRequest.ts#L24-L40" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126596,7 +126597,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete_data_lifecycle" @@ -126604,6 +126604,7 @@ "specLocation": "indices/delete_data_lifecycle/IndicesDeleteDataLifecycleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126617,7 +126618,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete_data_stream" @@ -126667,6 +126667,7 @@ "specLocation": "indices/delete_data_stream/IndicesDeleteDataStreamRequest.ts#L24-L51" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126677,7 +126678,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete_data_stream" @@ -126685,6 +126685,7 @@ "specLocation": "indices/delete_data_stream/IndicesDeleteDataStreamResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126698,7 +126699,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete_index_template" @@ -126748,6 +126748,7 @@ "specLocation": "indices/delete_index_template/IndicesDeleteIndexTemplateRequest.ts#L24-L53" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126758,7 +126759,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete_index_template" @@ -126766,6 +126766,7 @@ "specLocation": "indices/delete_index_template/IndicesDeleteIndexTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126779,7 +126780,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.delete_template" @@ -126829,6 +126829,7 @@ "specLocation": "indices/delete_template/IndicesDeleteTemplateRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -126839,7 +126840,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.delete_template" @@ -126847,6 +126847,7 @@ "specLocation": "indices/delete_template/IndicesDeleteTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -126860,7 +126861,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.disk_usage" @@ -126949,13 +126949,13 @@ "specLocation": "indices/disk_usage/IndicesDiskUsageRequest.ts#L23-L71" }, { + "kind": "response", "body": { "kind": "value", "value": { "kind": "user_defined_value" } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.disk_usage" @@ -126963,12 +126963,13 @@ "specLocation": "indices/disk_usage/IndicesDiskUsageResponse.ts#L22-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "config", "kind": "value", + "codegenName": "config", "value": { "kind": "instance_of", "type": { @@ -126984,7 +126985,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.downsample" @@ -127019,13 +127019,13 @@ "specLocation": "indices/downsample/Request.ts#L24-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { "kind": "user_defined_value" } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.downsample" @@ -127033,6 +127033,7 @@ "specLocation": "indices/downsample/Response.ts#L22-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127046,7 +127047,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.exists" @@ -127148,10 +127148,10 @@ "specLocation": "indices/exists/IndicesExistsRequest.ts#L23-L73" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.exists" @@ -127159,6 +127159,7 @@ "specLocation": "indices/exists/IndicesExistsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127172,7 +127173,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.exists_alias" @@ -127260,10 +127260,10 @@ "specLocation": "indices/exists_alias/IndicesExistsAliasRequest.ts#L23-L68" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.exists_alias" @@ -127271,6 +127271,7 @@ "specLocation": "indices/exists_alias/IndicesExistsAliasResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127284,7 +127285,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.exists_index_template" @@ -127321,10 +127321,10 @@ "specLocation": "indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts#L24-L41" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.exists_index_template" @@ -127332,6 +127332,7 @@ "specLocation": "indices/exists_index_template/IndicesExistsIndexTemplateResponse.ts#L22-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127345,7 +127346,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.exists_template" @@ -127405,10 +127405,10 @@ "specLocation": "indices/exists_template/IndicesExistsTemplateRequest.ts#L24-L39" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.exists_template" @@ -127448,6 +127448,7 @@ "name": "index_creation_date_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -127457,7 +127458,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -127479,6 +127479,7 @@ "name": "rollover_date_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -127488,7 +127489,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -127543,6 +127543,7 @@ "specLocation": "indices/explain_data_lifecycle/IndicesExplainDataLifecycleResponse.ts#L31-L41" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127556,7 +127557,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.explain_data_lifecycle" @@ -127604,6 +127604,7 @@ "specLocation": "indices/explain_data_lifecycle/IndicesExplainDataLifecycleRequest.ts#L24-L39" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -127611,6 +127612,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -127618,7 +127620,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -127631,7 +127632,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.explain_data_lifecycle" @@ -127737,6 +127737,7 @@ "specLocation": "indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L57-L66" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -127768,7 +127769,6 @@ } } ], - "kind": "interface", "name": { "name": "FieldsUsageBody", "namespace": "indices.field_usage_stats" @@ -127876,6 +127876,7 @@ "specLocation": "indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L68-L76" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -127889,7 +127890,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.field_usage_stats" @@ -128001,6 +128001,7 @@ "specLocation": "indices/field_usage_stats/IndicesFieldUsageStatsRequest.ts#L29-L84" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -128011,7 +128012,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.field_usage_stats" @@ -128040,6 +128040,7 @@ "name": "fields", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -128047,7 +128048,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -128129,6 +128129,7 @@ "name": "tracking_started_at_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -128138,7 +128139,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -128149,6 +128149,7 @@ "specLocation": "indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L45-L50" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -128162,7 +128163,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.flush" @@ -128251,6 +128251,7 @@ "specLocation": "indices/flush/IndicesFlushRequest.ts#L23-L71" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -128261,7 +128262,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.flush" @@ -128269,6 +128269,7 @@ "specLocation": "indices/flush/IndicesFlushResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -128282,7 +128283,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.forcemerge" @@ -128390,6 +128390,7 @@ "specLocation": "indices/forcemerge/IndicesForceMergeRequest.ts#L24-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -128400,7 +128401,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.forcemerge" @@ -128408,13 +128408,13 @@ "specLocation": "indices/forcemerge/IndicesForceMergeResponse.ts#L22-L24" }, { + "kind": "interface", "inherits": { "type": { "name": "ShardsOperationResponseBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "ForceMergeResponseBody", "namespace": "indices.forcemerge._types" @@ -128462,6 +128462,7 @@ }, "specLocation": "indices/get/IndicesGetRequest.ts#L96-L96", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -128480,11 +128481,11 @@ } } } - ], - "kind": "union_of" + ] } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -128498,7 +128499,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get" @@ -128632,9 +128632,11 @@ "specLocation": "indices/get/IndicesGetRequest.ts#L24-L89" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -128642,7 +128644,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -128653,7 +128654,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get" @@ -128671,6 +128671,7 @@ "name": "aliases", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -128678,7 +128679,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -128693,6 +128693,7 @@ "specLocation": "indices/get_alias/IndicesGetAliasResponse.ts#L37-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -128706,7 +128707,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_alias" @@ -128794,9 +128794,11 @@ "specLocation": "indices/get_alias/IndicesGetAliasRequest.ts#L23-L71" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -128804,7 +128806,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -128820,6 +128821,7 @@ "body": { "kind": "value", "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -128835,8 +128837,7 @@ "namespace": "_types" } } - ], - "kind": "union_of" + ] } }, "statusCodes": [ @@ -128844,7 +128845,6 @@ ] } ], - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_alias" @@ -128884,6 +128884,7 @@ "specLocation": "indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L27-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -128897,7 +128898,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_data_lifecycle" @@ -128960,6 +128960,7 @@ "specLocation": "indices/get_data_lifecycle/IndicesGetDataLifecycleRequest.ts#L24-L59" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -128979,7 +128980,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_data_lifecycle" @@ -128987,6 +128987,7 @@ "specLocation": "indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129000,7 +129001,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_data_stream" @@ -129072,6 +129072,7 @@ "specLocation": "indices/get_data_stream/IndicesGetDataStreamRequest.ts#L24-L60" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -129091,7 +129092,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_data_stream" @@ -129099,6 +129099,7 @@ "specLocation": "indices/get_data_stream/IndicesGetDataStreamResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129112,7 +129113,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_field_mapping" @@ -129213,9 +129213,11 @@ "specLocation": "indices/get_field_mapping/IndicesGetFieldMappingRequest.ts#L23-L74" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -129223,7 +129225,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -129234,7 +129235,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_field_mapping" @@ -129252,6 +129252,7 @@ "name": "mappings", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -129259,7 +129260,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -129306,6 +129306,7 @@ "specLocation": "indices/get_index_template/IndicesGetIndexTemplateResponse.ts#L29-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129319,7 +129320,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_index_template" @@ -129404,6 +129404,7 @@ "specLocation": "indices/get_index_template/IndicesGetIndexTemplateRequest.ts#L24-L61" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -129423,7 +129424,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_index_template" @@ -129463,6 +129463,7 @@ "specLocation": "indices/get_mapping/IndicesGetMappingResponse.ts#L29-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129476,7 +129477,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_mapping" @@ -129565,9 +129565,11 @@ "specLocation": "indices/get_mapping/IndicesGetMappingRequest.ts#L24-L73" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -129575,7 +129577,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -129586,7 +129587,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_mapping" @@ -129594,6 +129594,7 @@ "specLocation": "indices/get_mapping/IndicesGetMappingResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129607,7 +129608,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_settings" @@ -129734,9 +129734,11 @@ "specLocation": "indices/get_settings/IndicesGetSettingsRequest.ts#L24-L92" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -129744,7 +129746,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -129755,7 +129756,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_settings" @@ -129763,6 +129763,7 @@ "specLocation": "indices/get_settings/IndicesGetSettingsResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129776,7 +129777,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.get_template" @@ -129839,9 +129839,11 @@ "specLocation": "indices/get_template/IndicesGetTemplateRequest.ts#L24-L57" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -129849,7 +129851,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -129860,7 +129861,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.get_template" @@ -129868,6 +129868,7 @@ "specLocation": "indices/get_template/IndicesGetTemplateResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -129881,7 +129882,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.migrate_to_data_stream" @@ -129931,6 +129931,7 @@ "specLocation": "indices/migrate_to_data_stream/IndicesMigrateToDataStreamRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -129941,7 +129942,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.migrate_to_data_stream" @@ -130020,6 +130020,7 @@ "specLocation": "indices/modify_data_stream/types.ts#L39-L44" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130050,7 +130051,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.modify_data_stream" @@ -130060,6 +130060,7 @@ "specLocation": "indices/modify_data_stream/IndicesModifyDataStreamRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -130070,7 +130071,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.modify_data_stream" @@ -130078,6 +130078,7 @@ "specLocation": "indices/modify_data_stream/IndicesModifyDataStreamResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130091,7 +130092,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.open" @@ -130195,6 +130195,7 @@ "specLocation": "indices/open/IndicesOpenRequest.ts#L24-L82" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -130222,7 +130223,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.open" @@ -130230,6 +130230,7 @@ "specLocation": "indices/open/IndicesOpenResponse.ts#L20-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130243,7 +130244,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.promote_data_stream" @@ -130280,13 +130280,13 @@ "specLocation": "indices/promote_data_stream/IndicesPromoteDataStreamRequest.ts#L24-L39" }, { + "kind": "response", "body": { "kind": "value", "value": { "kind": "user_defined_value" } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.promote_data_stream" @@ -130294,6 +130294,7 @@ "specLocation": "indices/promote_data_stream/IndicesPromoteDataStreamResponse.ts#L22-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130369,7 +130370,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_alias" @@ -130433,6 +130433,7 @@ "specLocation": "indices/put_alias/IndicesPutAliasRequest.ts#L25-L92" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -130443,7 +130444,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_alias" @@ -130451,6 +130451,7 @@ "specLocation": "indices/put_alias/IndicesPutAliasResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130490,7 +130491,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_data_lifecycle" @@ -130553,6 +130553,7 @@ "specLocation": "indices/put_data_lifecycle/IndicesPutDataLifecycleRequest.ts#L25-L76" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -130563,7 +130564,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_data_lifecycle" @@ -130582,6 +130582,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -130589,7 +130590,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -130648,6 +130648,7 @@ "specLocation": "indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L121-L143" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130791,7 +130792,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_index_template" @@ -130853,6 +130853,7 @@ "specLocation": "indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L37-L119" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -130863,7 +130864,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_index_template" @@ -130871,6 +130871,7 @@ "specLocation": "indices/put_index_template/IndicesPutIndexTemplateResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -130921,8 +130922,10 @@ "name": "dynamic_templates", "required": false, "type": { + "kind": "union_of", "items": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -130930,7 +130933,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -130943,6 +130945,7 @@ { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -130950,7 +130953,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -130961,8 +130963,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -131007,6 +131008,7 @@ "name": "properties", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -131014,7 +131016,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -131070,7 +131071,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_mapping" @@ -131172,6 +131172,7 @@ "specLocation": "indices/put_mapping/IndicesPutMappingRequest.ts#L42-L150" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -131182,7 +131183,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_mapping" @@ -131190,12 +131190,13 @@ "specLocation": "indices/put_mapping/IndicesPutMappingResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "settings", "kind": "value", + "codegenName": "settings", "value": { "kind": "instance_of", "type": { @@ -131211,7 +131212,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_settings" @@ -131326,6 +131326,7 @@ "specLocation": "indices/put_settings/IndicesPutSettingsRequest.ts#L25-L93" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -131336,7 +131337,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_settings" @@ -131344,6 +131344,7 @@ "specLocation": "indices/put_settings/IndicesPutSettingsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -131355,6 +131356,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -131362,7 +131364,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -131378,6 +131379,7 @@ "name": "index_patterns", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -131396,8 +131398,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -131457,7 +131458,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.put_template" @@ -131530,6 +131530,7 @@ "specLocation": "indices/put_template/IndicesPutTemplateRequest.ts#L29-L95" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -131540,7 +131541,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.put_template" @@ -131822,6 +131822,7 @@ "name": "source_throttle_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -131831,7 +131832,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -131853,6 +131853,7 @@ "name": "target_throttle_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -131862,7 +131863,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -131884,6 +131884,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -131893,7 +131894,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132067,6 +132067,7 @@ "name": "check_index_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132076,7 +132077,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132098,6 +132098,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132107,7 +132108,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132142,6 +132142,7 @@ "specLocation": "indices/recovery/types.ts#L98-L100" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -132155,7 +132156,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.recovery" @@ -132205,9 +132205,11 @@ "specLocation": "indices/recovery/IndicesRecoveryRequest.ts#L23-L51" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -132215,7 +132217,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -132226,7 +132227,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.recovery" @@ -132321,6 +132321,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132330,7 +132331,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -132352,6 +132352,7 @@ "name": "stop_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132361,7 +132362,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -132394,6 +132394,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132403,7 +132404,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132512,6 +132512,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132521,7 +132522,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132553,6 +132553,7 @@ "name": "check_index_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132562,7 +132563,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132584,6 +132584,7 @@ "name": "total_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -132593,7 +132594,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -132604,6 +132604,7 @@ "specLocation": "indices/recovery/types.ts#L111-L116" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -132617,7 +132618,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.refresh" @@ -132680,6 +132680,7 @@ "specLocation": "indices/refresh/IndicesRefreshRequest.ts#L23-L61" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -132690,7 +132691,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.refresh" @@ -132782,6 +132782,7 @@ "specLocation": "indices/reload_search_analyzers/types.ts#L22-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -132795,7 +132796,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.reload_search_analyzers" @@ -132855,6 +132855,7 @@ "specLocation": "indices/reload_search_analyzers/ReloadSearchAnalyzersRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -132865,7 +132866,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.reload_search_analyzers" @@ -132873,6 +132873,7 @@ "specLocation": "indices/reload_search_analyzers/ReloadSearchAnalyzersResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -132886,7 +132887,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.resolve_cluster" @@ -132959,8 +132959,8 @@ "specLocation": "indices/resolve_cluster/ResolveClusterRequest.ts#L23-L62" }, { - "description": "Provides information about each cluster request relevant to doing a cross-cluster search.", "kind": "interface", + "description": "Provides information about each cluster request relevant to doing a cross-cluster search.", "name": { "name": "ResolveClusterInfo", "namespace": "indices.resolve_cluster" @@ -133030,9 +133030,11 @@ "specLocation": "indices/resolve_cluster/ResolveClusterResponse.ts#L29-L55" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133040,7 +133042,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -133051,7 +133052,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.resolve_cluster" @@ -133059,6 +133059,7 @@ "specLocation": "indices/resolve_cluster/ResolveClusterResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -133072,7 +133073,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.resolve_index" @@ -133244,6 +133244,7 @@ "specLocation": "indices/resolve_index/ResolveIndexResponse.ts#L30-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -133291,7 +133292,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.resolve_index" @@ -133299,6 +133299,7 @@ "specLocation": "indices/resolve_index/ResolveIndexResponse.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -133310,6 +133311,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133317,7 +133319,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -133357,6 +133358,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133364,7 +133366,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -133380,7 +133381,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.rollover" @@ -133468,6 +133468,7 @@ "specLocation": "indices/rollover/IndicesRolloverRequest.ts#L29-L100" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -133486,6 +133487,7 @@ "name": "conditions", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133493,7 +133495,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -133561,7 +133562,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.rollover" @@ -133601,6 +133601,7 @@ "name": "max_age_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -133610,7 +133611,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -133763,6 +133763,7 @@ "name": "shards", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133770,9 +133771,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -133791,8 +133792,7 @@ } } } - ], - "kind": "union_of" + ] } } } @@ -133800,6 +133800,7 @@ "specLocation": "indices/segments/types.ts#L24-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -133813,7 +133814,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.segments" @@ -133889,6 +133889,7 @@ "specLocation": "indices/segments/IndicesSegmentsRequest.ts#L23-L64" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -133896,6 +133897,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133903,7 +133905,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -133927,7 +133928,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.segments" @@ -133945,6 +133945,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -133952,7 +133953,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134141,6 +134141,7 @@ "name": "segments", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134148,7 +134149,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134173,6 +134173,7 @@ "name": "shards", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134180,7 +134181,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134195,6 +134195,7 @@ "specLocation": "indices/shard_stores/types.ts#L26-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -134208,7 +134209,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.shard_stores" @@ -134271,6 +134271,7 @@ "name": "status", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -134289,14 +134290,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "indices/shard_stores/IndicesShardStoresRequest.ts#L24-L60" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -134304,6 +134305,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134311,7 +134313,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134324,7 +134325,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.shard_stores" @@ -134332,6 +134332,7 @@ "specLocation": "indices/shard_stores/IndicesShardStoresResponse.ts#L24-L26" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -134363,7 +134364,6 @@ } } ], - "kind": "interface", "name": { "name": "ShardStore", "namespace": "indices.shard_stores" @@ -134467,6 +134467,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134474,7 +134475,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134597,6 +134597,7 @@ "specLocation": "indices/shard_stores/types.ts#L59-L61" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -134608,6 +134609,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134615,7 +134617,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -134631,6 +134632,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -134638,7 +134640,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -134654,7 +134655,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.shrink" @@ -134729,6 +134729,7 @@ "specLocation": "indices/shrink/IndicesShrinkRequest.ts#L27-L75" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -134767,7 +134768,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.shrink" @@ -134775,6 +134775,7 @@ "specLocation": "indices/shrink/IndicesShrinkResponse.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -134788,7 +134789,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.simulate_index_template" @@ -134847,6 +134847,7 @@ "specLocation": "indices/simulate_index_template/IndicesSimulateIndexTemplateRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -134877,7 +134878,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.simulate_index_template" @@ -134920,6 +134920,7 @@ "specLocation": "indices/simulate_template/IndicesSimulateTemplateResponse.ts#L39-L42" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -135065,7 +135066,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.simulate_template" @@ -135137,6 +135137,7 @@ "specLocation": "indices/simulate_template/IndicesSimulateTemplateRequest.ts#L27-L120" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -135167,7 +135168,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.simulate_template" @@ -135185,6 +135185,7 @@ "name": "aliases", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -135192,7 +135193,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -135229,6 +135229,7 @@ "specLocation": "indices/simulate_template/IndicesSimulateTemplateResponse.ts#L33-L37" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -135240,6 +135241,7 @@ "name": "aliases", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -135247,7 +135249,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -135263,6 +135264,7 @@ "name": "settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -135270,7 +135272,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -135286,7 +135287,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.split" @@ -135361,6 +135361,7 @@ "specLocation": "indices/split/IndicesSplitRequest.ts#L27-L74" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -135399,7 +135400,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.split" @@ -135686,6 +135686,7 @@ "name": "shards", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -135693,7 +135694,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -135810,6 +135810,7 @@ "specLocation": "indices/stats/types.ts#L186-L190" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -135823,7 +135824,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.stats" @@ -135921,6 +135921,7 @@ "name": "groups", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -135939,8 +135940,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -135985,6 +135985,7 @@ "specLocation": "indices/stats/IndicesStatsRequest.ts#L29-L85" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -135992,6 +135993,7 @@ "name": "indices", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -135999,7 +136001,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -136034,7 +136035,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.stats" @@ -136085,6 +136085,7 @@ "name": "user_data", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -136092,7 +136093,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -136445,6 +136445,7 @@ "name": "relocating_node", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -136460,8 +136461,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -136813,6 +136813,7 @@ "name": "shards", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -136820,7 +136821,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -136874,6 +136874,7 @@ "specLocation": "indices/stats/types.ts#L182-L184" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -136887,7 +136888,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.unfreeze" @@ -136989,6 +136989,7 @@ "specLocation": "indices/unfreeze/IndicesUnfreezeRequest.ts#L24-L75" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -137016,7 +137017,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.unfreeze" @@ -137096,6 +137096,7 @@ "name": "aliases", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -137114,8 +137115,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -137255,6 +137255,7 @@ "name": "aliases", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -137273,8 +137274,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -137365,6 +137365,7 @@ "specLocation": "indices/update_aliases/types.ts#L124-L139" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -137395,7 +137396,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.update_aliases" @@ -137432,6 +137432,7 @@ "specLocation": "indices/update_aliases/IndicesUpdateAliasesRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -137442,7 +137443,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.update_aliases" @@ -137504,6 +137504,7 @@ "specLocation": "indices/validate_query/IndicesValidateQueryResponse.ts#L32-L37" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -137531,7 +137532,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "indices.validate_query" @@ -137708,6 +137708,7 @@ "specLocation": "indices/validate_query/IndicesValidateQueryRequest.ts#L25-L112" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -137760,7 +137761,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "indices.validate_query" @@ -137768,8 +137768,8 @@ "specLocation": "indices/validate_query/IndicesValidateQueryResponse.ts#L23-L30" }, { - "description": "The completion result object", "kind": "interface", + "description": "The completion result object", "name": { "name": "CompletionResult", "namespace": "inference._types" @@ -137790,6 +137790,7 @@ "specLocation": "inference/_types/Results.ts#L60-L65" }, { + "kind": "interface", "description": "Acknowledged response. For dry_run, contains the list of pipelines which reference the inference endpoint", "inherits": { "type": { @@ -137797,7 +137798,6 @@ "namespace": "_types" } }, - "kind": "interface", "name": { "name": "DeleteInferenceEndpointResult", "namespace": "inference._types" @@ -137821,8 +137821,8 @@ "specLocation": "inference/_types/Results.ts#L91-L96" }, { - "description": "Text Embedding results containing bytes are represented as Dense\nVectors of bytes.", "kind": "type_alias", + "description": "Text Embedding results containing bytes are represented as Dense\nVectors of bytes.", "name": { "name": "DenseByteVector", "namespace": "inference._types" @@ -137840,8 +137840,8 @@ } }, { - "description": "Text Embedding results are represented as Dense Vectors\nof floats.", "kind": "type_alias", + "description": "Text Embedding results are represented as Dense Vectors\nof floats.", "name": { "name": "DenseVector", "namespace": "inference._types" @@ -137859,8 +137859,8 @@ } }, { - "description": "Configuration options when storing the inference endpoint", "kind": "interface", + "description": "Configuration options when storing the inference endpoint", "name": { "name": "InferenceEndpoint", "namespace": "inference._types" @@ -137906,6 +137906,7 @@ "specLocation": "inference/_types/Services.ts#L23-L39" }, { + "kind": "interface", "description": "Represents an inference endpoint as returned by the GET API", "inherits": { "type": { @@ -137913,7 +137914,6 @@ "namespace": "inference._types" } }, - "kind": "interface", "name": { "name": "InferenceEndpointInfo", "namespace": "inference._types" @@ -137947,8 +137947,8 @@ "specLocation": "inference/_types/Services.ts#L41-L53" }, { - "description": "InferenceResult is an aggregation of mutually exclusive variants", "kind": "interface", + "description": "InferenceResult is an aggregation of mutually exclusive variants", "name": { "name": "InferenceResult", "namespace": "inference._types" @@ -138031,8 +138031,8 @@ } }, { - "description": "The rerank result object representing a single ranked document\nid: the original index of the document in the request\nscore: the score of the document relative to the query\ntext: Optional, the text of the document, if requested", "kind": "interface", + "description": "The rerank result object representing a single ranked document\nid: the original index of the document in the request\nscore: the score of the document relative to the query\ntext: Optional, the text of the document, if requested", "name": { "name": "RankedDocument", "namespace": "inference._types" @@ -138107,14 +138107,15 @@ "specLocation": "inference/_types/Results.ts#L36-L38" }, { - "description": "Sparse Embedding tokens are represented as a dictionary\nof string to double.", "kind": "type_alias", + "description": "Sparse Embedding tokens are represented as a dictionary\nof string to double.", "name": { "name": "SparseVector", "namespace": "inference._types" }, "specLocation": "inference/_types/Results.ts#L24-L28", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -138122,7 +138123,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -138167,8 +138167,8 @@ "specLocation": "inference/_types/TaskType.ts#L20-L28" }, { - "description": "The text embedding result object for byte representation", "kind": "interface", + "description": "The text embedding result object for byte representation", "name": { "name": "TextEmbeddingByteResult", "namespace": "inference._types" @@ -138189,8 +138189,8 @@ "specLocation": "inference/_types/Results.ts#L46-L51" }, { - "description": "The text embedding result object", "kind": "interface", + "description": "The text embedding result object", "name": { "name": "TextEmbeddingResult", "namespace": "inference._types" @@ -138211,6 +138211,7 @@ "specLocation": "inference/_types/Results.ts#L53-L58" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -138224,7 +138225,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "inference.delete" @@ -138286,6 +138286,7 @@ "specLocation": "inference/delete/DeleteRequest.ts#L24-L55" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -138296,7 +138297,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "inference.delete" @@ -138304,6 +138304,7 @@ "specLocation": "inference/delete/DeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -138317,7 +138318,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "inference.get" @@ -138352,6 +138352,7 @@ "specLocation": "inference/get/GetRequest.ts#L24-L41" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -138371,7 +138372,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "inference.get" @@ -138379,6 +138379,7 @@ "specLocation": "inference/get/GetResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -138402,6 +138403,7 @@ "name": "input", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -138420,8 +138422,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -138445,7 +138446,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "inference.inference" @@ -138494,6 +138494,7 @@ "specLocation": "inference/inference/InferenceRequest.ts#L26-L66" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -138504,7 +138505,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "inference.inference" @@ -138512,12 +138512,13 @@ "specLocation": "inference/inference/InferenceResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "inference_config", "kind": "value", + "codegenName": "inference_config", "value": { "kind": "instance_of", "type": { @@ -138533,7 +138534,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "inference.put" @@ -138568,6 +138568,7 @@ "specLocation": "inference/put/PutRequest.ts#L25-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -138578,7 +138579,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "inference.put" @@ -138586,13 +138586,13 @@ "specLocation": "inference/put/PutResponse.ts#L22-L24" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "AppendProcessor", "namespace": "ingest._types" @@ -138638,13 +138638,13 @@ "specLocation": "ingest/_types/Processors.ts#L279-L294" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "AttachmentProcessor", "namespace": "ingest._types" @@ -138758,13 +138758,13 @@ "specLocation": "ingest/_types/Processors.ts#L296-L337" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "BytesProcessor", "namespace": "ingest._types" @@ -138812,13 +138812,13 @@ "specLocation": "ingest/_types/Processors.ts#L392-L408" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "CircleProcessor", "namespace": "ingest._types" @@ -138889,13 +138889,13 @@ "specLocation": "ingest/_types/Processors.ts#L410-L433" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "ConvertProcessor", "namespace": "ingest._types" @@ -138986,13 +138986,13 @@ "specLocation": "ingest/_types/Processors.ts#L435-L443" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "CsvProcessor", "namespace": "ingest._types" @@ -139084,13 +139084,13 @@ "specLocation": "ingest/_types/Processors.ts#L467-L500" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "DateIndexNameProcessor", "namespace": "ingest._types" @@ -139190,13 +139190,13 @@ "specLocation": "ingest/_types/Processors.ts#L502-L540" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "DateProcessor", "namespace": "ingest._types" @@ -139272,13 +139272,13 @@ "specLocation": "ingest/_types/Processors.ts#L542-L569" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "DissectProcessor", "namespace": "ingest._types" @@ -139338,13 +139338,13 @@ "specLocation": "ingest/_types/Processors.ts#L571-L590" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "DotExpanderProcessor", "namespace": "ingest._types" @@ -139378,13 +139378,13 @@ "specLocation": "ingest/_types/Processors.ts#L592-L603" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "DropProcessor", "namespace": "ingest._types" @@ -139393,13 +139393,13 @@ "specLocation": "ingest/_types/Processors.ts#L605-L605" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "EnrichProcessor", "namespace": "ingest._types" @@ -139497,13 +139497,13 @@ "specLocation": "ingest/_types/Processors.ts#L607-L646" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "FailProcessor", "namespace": "ingest._types" @@ -139525,13 +139525,13 @@ "specLocation": "ingest/_types/Processors.ts#L648-L654" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "ForeachProcessor", "namespace": "ingest._types" @@ -139578,13 +139578,13 @@ "specLocation": "ingest/_types/Processors.ts#L656-L670" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "GeoIpProcessor", "namespace": "ingest._types" @@ -139673,13 +139673,13 @@ "specLocation": "ingest/_types/Processors.ts#L339-L368" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "GrokProcessor", "namespace": "ingest._types" @@ -139715,6 +139715,7 @@ "name": "pattern_definitions", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -139722,7 +139723,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -139765,13 +139765,13 @@ "specLocation": "ingest/_types/Processors.ts#L672-L697" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "GsubProcessor", "namespace": "ingest._types" @@ -139990,13 +139990,13 @@ "specLocation": "ingest/_types/Processors.ts#L760-L771" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "InferenceProcessor", "namespace": "ingest._types" @@ -140032,6 +140032,7 @@ "name": "field_map", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -140039,7 +140040,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -140062,13 +140062,13 @@ "specLocation": "ingest/_types/Processors.ts#L725-L744" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "JoinProcessor", "namespace": "ingest._types" @@ -140115,13 +140115,13 @@ "specLocation": "ingest/_types/Processors.ts#L801-L816" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "JsonProcessor", "namespace": "ingest._types" @@ -140212,13 +140212,13 @@ "specLocation": "ingest/_types/Processors.ts#L849-L854" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "KeyValueProcessor", "namespace": "ingest._types" @@ -140369,13 +140369,13 @@ "specLocation": "ingest/_types/Processors.ts#L856-L908" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "LowercaseProcessor", "namespace": "ingest._types" @@ -140548,13 +140548,13 @@ "specLocation": "ingest/_types/Pipeline.ts#L61-L75" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "PipelineProcessor", "namespace": "ingest._types" @@ -141166,13 +141166,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "RemoveProcessor", "namespace": "ingest._types" @@ -141219,13 +141219,13 @@ "specLocation": "ingest/_types/Processors.ts#L941-L955" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "RenameProcessor", "namespace": "ingest._types" @@ -141272,13 +141272,13 @@ "specLocation": "ingest/_types/Processors.ts#L957-L973" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "RerouteProcessor", "namespace": "ingest._types" @@ -141301,6 +141301,7 @@ "name": "dataset", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -141319,8 +141320,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -141328,6 +141328,7 @@ "name": "namespace", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -141346,21 +141347,20 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "ingest/_types/Processors.ts#L975-L1003" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "ScriptProcessor", "namespace": "ingest._types" @@ -141396,6 +141396,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -141403,7 +141404,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -141426,13 +141426,13 @@ "specLocation": "ingest/_types/Processors.ts#L1005-L1025" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "SetProcessor", "namespace": "ingest._types" @@ -141512,13 +141512,13 @@ "specLocation": "ingest/_types/Processors.ts#L1027-L1061" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "SetSecurityUserProcessor", "namespace": "ingest._types" @@ -141571,13 +141571,13 @@ "specLocation": "ingest/_types/Processors.ts#L1074-L1077" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "SortProcessor", "namespace": "ingest._types" @@ -141624,13 +141624,13 @@ "specLocation": "ingest/_types/Processors.ts#L1079-L1095" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "SplitProcessor", "namespace": "ingest._types" @@ -141703,13 +141703,13 @@ "specLocation": "ingest/_types/Processors.ts#L1097-L1122" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "TrimProcessor", "namespace": "ingest._types" @@ -141757,13 +141757,13 @@ "specLocation": "ingest/_types/Processors.ts#L1124-L1140" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "UppercaseProcessor", "namespace": "ingest._types" @@ -141811,13 +141811,13 @@ "specLocation": "ingest/_types/Processors.ts#L1142-L1158" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "UrlDecodeProcessor", "namespace": "ingest._types" @@ -141865,13 +141865,13 @@ "specLocation": "ingest/_types/Processors.ts#L1160-L1176" }, { + "kind": "interface", "inherits": { "type": { "name": "ProcessorBase", "namespace": "ingest._types" } }, - "kind": "interface", "name": { "name": "UserAgentProcessor", "namespace": "ingest._types" @@ -141985,6 +141985,7 @@ "specLocation": "ingest/_types/Processors.ts#L266-L277" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -141998,7 +141999,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.delete_pipeline" @@ -142048,6 +142048,7 @@ "specLocation": "ingest/delete_pipeline/DeletePipelineRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -142058,7 +142059,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.delete_pipeline" @@ -142101,6 +142101,7 @@ "name": "total_download_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -142110,7 +142111,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -142167,8 +142167,8 @@ "specLocation": "ingest/geo_ip_stats/types.ts#L45-L48" }, { - "description": "Downloaded databases for the node. The field key is the node ID.", "kind": "interface", + "description": "Downloaded databases for the node. The field key is the node ID.", "name": { "name": "GeoIpNodeDatabases", "namespace": "ingest.geo_ip_stats" @@ -142208,6 +142208,7 @@ "specLocation": "ingest/geo_ip_stats/types.ts#L37-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -142221,7 +142222,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.geo_ip_stats" @@ -142231,6 +142231,7 @@ "specLocation": "ingest/geo_ip_stats/IngestGeoIpStatsRequest.ts#L22-L29" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -142251,6 +142252,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -142258,7 +142260,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -142271,7 +142272,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.geo_ip_stats" @@ -142279,6 +142279,7 @@ "specLocation": "ingest/geo_ip_stats/IngestGeoIpStatsResponse.ts#L24-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -142292,7 +142293,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.get_pipeline" @@ -142342,9 +142342,11 @@ "specLocation": "ingest/get_pipeline/GetPipelineRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -142352,7 +142354,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -142363,7 +142364,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.get_pipeline" @@ -142371,6 +142371,7 @@ "specLocation": "ingest/get_pipeline/GetPipelineResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -142384,7 +142385,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.processor_grok" @@ -142394,6 +142394,7 @@ "specLocation": "ingest/processor_grok/GrokProcessorPatternsRequest.ts#L22-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -142401,6 +142402,7 @@ "name": "patterns", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -142408,7 +142410,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -142421,7 +142422,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.processor_grok" @@ -142429,6 +142429,7 @@ "specLocation": "ingest/processor_grok/GrokProcessorPatternsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -142510,7 +142511,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.put_pipeline" @@ -142572,6 +142572,7 @@ "specLocation": "ingest/put_pipeline/PutPipelineRequest.ts#L25-L77" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -142582,7 +142583,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.put_pipeline" @@ -142632,6 +142632,7 @@ "specLocation": "ingest/simulate/types.ts#L41-L55" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -142664,7 +142665,6 @@ } ], "description": "The simulated document, with optional metadata.", - "kind": "interface", "name": { "name": "DocumentSimulation", "namespace": "ingest.simulate" @@ -142722,6 +142722,7 @@ "name": "_source", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -142729,7 +142730,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -142741,6 +142741,7 @@ "name": "_version", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -142750,7 +142751,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Stringified", "namespace": "_spec_utils" @@ -142872,6 +142872,7 @@ "specLocation": "ingest/simulate/types.ts#L33-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -142914,7 +142915,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ingest.simulate" @@ -142950,6 +142950,7 @@ "specLocation": "ingest/simulate/SimulatePipelineRequest.ts#L25-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -142969,7 +142970,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ingest.simulate" @@ -142987,6 +142987,7 @@ "name": "expiry_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -142996,7 +142997,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143007,6 +143007,7 @@ "name": "issue_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -143016,7 +143017,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143027,6 +143027,7 @@ "name": "start_date_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -143036,7 +143037,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143069,6 +143069,7 @@ "name": "max_nodes", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -143084,8 +143085,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -143195,6 +143195,7 @@ "specLocation": "license/_types/License.ts#L23-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143208,7 +143209,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.delete" @@ -143218,6 +143218,7 @@ "specLocation": "license/delete/DeleteLicenseRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -143228,7 +143229,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "license.delete" @@ -143257,6 +143257,7 @@ "name": "expiry_date_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -143266,7 +143267,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143288,6 +143288,7 @@ "name": "issue_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -143297,7 +143298,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143330,6 +143330,7 @@ "name": "max_nodes", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -143345,14 +143346,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "max_resource_units", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -143368,8 +143369,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -143409,6 +143409,7 @@ "name": "start_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -143418,7 +143419,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -143429,6 +143429,7 @@ "specLocation": "license/get/types.ts#L25-L38" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143442,7 +143443,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.get" @@ -143483,6 +143483,7 @@ "specLocation": "license/get/GetLicenseRequest.ts#L22-L45" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143499,7 +143500,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.get" @@ -143507,6 +143507,7 @@ "specLocation": "license/get/GetLicenseResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143520,7 +143521,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.get_basic_status" @@ -143530,6 +143530,7 @@ "specLocation": "license/get_basic_status/GetBasicLicenseStatusRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143546,7 +143547,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.get_basic_status" @@ -143554,6 +143554,7 @@ "specLocation": "license/get_basic_status/GetBasicLicenseStatusResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143567,7 +143568,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.get_trial_status" @@ -143577,6 +143577,7 @@ "specLocation": "license/get_trial_status/GetTrialLicenseStatusRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143593,7 +143594,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.get_trial_status" @@ -143636,6 +143636,7 @@ "specLocation": "license/post/types.ts#L20-L23" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143677,7 +143678,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.post" @@ -143701,6 +143701,7 @@ "specLocation": "license/post/PostLicenseRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143739,7 +143740,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.post" @@ -143747,6 +143747,7 @@ "specLocation": "license/post/PostLicenseResponse.ts#L23-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143760,7 +143761,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.post_start_basic" @@ -143783,6 +143783,7 @@ "specLocation": "license/post_start_basic/StartBasicLicenseRequest.ts#L22-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143834,6 +143835,7 @@ "name": "acknowledge", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -143841,9 +143843,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -143862,14 +143864,12 @@ } } } - ], - "kind": "union_of" + ] } } } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.post_start_basic" @@ -143877,6 +143877,7 @@ "specLocation": "license/post_start_basic/StartBasicLicenseResponse.ts#L23-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -143890,7 +143891,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "license.post_start_trial" @@ -143924,6 +143924,7 @@ "specLocation": "license/post_start_trial/StartTrialLicenseRequest.ts#L22-L33" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -143973,7 +143974,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "license.post_start_trial" @@ -144197,6 +144197,7 @@ "specLocation": "logstash/_types/Pipeline.ts#L28-L59" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -144210,7 +144211,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "logstash.delete_pipeline" @@ -144233,10 +144233,10 @@ "specLocation": "logstash/delete_pipeline/LogstashDeletePipelineRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "logstash.delete_pipeline" @@ -144244,6 +144244,7 @@ "specLocation": "logstash/delete_pipeline/LogstashDeletePipelineResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -144257,7 +144258,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "logstash.get_pipeline" @@ -144280,9 +144280,11 @@ "specLocation": "logstash/get_pipeline/LogstashGetPipelineRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -144290,7 +144292,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -144301,7 +144302,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "logstash.get_pipeline" @@ -144309,12 +144309,13 @@ "specLocation": "logstash/get_pipeline/LogstashGetPipelineResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "pipeline", "kind": "value", + "codegenName": "pipeline", "value": { "kind": "instance_of", "type": { @@ -144330,7 +144331,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "logstash.put_pipeline" @@ -144353,10 +144353,10 @@ "specLocation": "logstash/put_pipeline/LogstashPutPipelineRequest.ts#L24-L39" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "logstash.put_pipeline" @@ -144443,6 +144443,7 @@ "specLocation": "migration/deprecations/types.ts#L20-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -144456,7 +144457,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "migration.deprecations" @@ -144479,6 +144479,7 @@ "specLocation": "migration/deprecations/DeprecationInfoRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -144500,6 +144501,7 @@ "name": "index_settings", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -144507,7 +144509,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -144551,7 +144552,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "migration.deprecations" @@ -144681,6 +144681,7 @@ "specLocation": "migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L30-L35" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -144694,7 +144695,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "migration.get_feature_upgrade_status" @@ -144704,6 +144704,7 @@ "specLocation": "migration/get_feature_upgrade_status/GetFeatureUpgradeStatusRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -144734,7 +144735,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "migration.get_feature_upgrade_status" @@ -144763,6 +144763,7 @@ "specLocation": "migration/post_feature_upgrade/PostFeatureUpgradeResponse.ts#L27-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -144776,7 +144777,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "migration.post_feature_upgrade" @@ -144786,6 +144786,7 @@ "specLocation": "migration/post_feature_upgrade/PostFeatureUpgradeRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -144816,7 +144817,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "migration.post_feature_upgrade" @@ -144977,6 +144977,7 @@ "specLocation": "ml/_types/Analysis.ts#L29-L77" }, { + "kind": "interface", "attachedBehaviors": [ "OverloadOf" ], @@ -144997,7 +144998,6 @@ } } ], - "kind": "interface", "name": { "name": "AnalysisConfigRead", "namespace": "ml._types" @@ -145246,6 +145246,7 @@ "name": "bucket_span", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -145255,7 +145256,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -145501,6 +145501,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -145510,7 +145511,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -145918,6 +145918,7 @@ "name": "bucket_span", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -145927,7 +145928,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -146023,6 +146023,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -146032,7 +146033,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -146092,6 +146092,7 @@ "name": "bucket_span", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -146101,7 +146102,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -146161,6 +146161,7 @@ "name": "processing_time_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -146170,7 +146171,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -146194,6 +146194,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -146203,7 +146204,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -146295,17 +146295,18 @@ "specLocation": "ml/_types/CalendarEvent.ts#L23-L33" }, { + "kind": "type_alias", "codegenNames": [ "name", "definition" ], - "kind": "type_alias", "name": { "name": "CategorizationAnalyzer", "namespace": "ml._types" }, "specLocation": "ml/_types/Analysis.ts#L181-L182", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -146321,8 +146322,7 @@ "namespace": "ml._types" } } - ], - "kind": "union_of" + ] } }, { @@ -146724,8 +146724,8 @@ "specLocation": "ml/_types/Rule.ts#L74-L79" }, { - "description": "Custom metadata about the job", "kind": "type_alias", + "description": "Custom metadata about the job", "name": { "name": "CustomSettings", "namespace": "ml._types" @@ -147027,6 +147027,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -147034,7 +147035,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -147166,6 +147166,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -147173,7 +147174,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -147295,6 +147295,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -147302,7 +147303,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -147452,6 +147452,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -147459,7 +147460,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -147663,6 +147663,7 @@ "name": "exponential_average_search_time_per_hour_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -147672,7 +147673,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -147708,6 +147708,7 @@ "name": "total_search_time_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -147717,7 +147718,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -147729,6 +147729,7 @@ "name": "average_search_time_per_bucket_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -147738,7 +147739,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -148025,13 +148025,13 @@ "specLocation": "ml/_types/DataframeAnalytics.ts#L238-L244" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeAnalysis", "namespace": "ml._types" } }, - "kind": "interface", "name": { "name": "DataframeAnalysisClassification", "namespace": "ml._types" @@ -148227,6 +148227,7 @@ "name": "frequency_map", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -148234,7 +148235,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -148439,6 +148439,7 @@ "name": "target_map", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -148446,7 +148447,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -148543,13 +148543,13 @@ "specLocation": "ml/_types/DataframeAnalytics.ts#L103-L132" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeAnalysis", "namespace": "ml._types" } }, - "kind": "interface", "name": { "name": "DataframeAnalysisRegression", "namespace": "ml._types" @@ -149088,6 +149088,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -149097,7 +149098,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -149179,6 +149179,7 @@ "name": "timestamp", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -149188,7 +149189,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -149222,6 +149222,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -149231,7 +149232,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -149343,6 +149343,7 @@ "name": "create_time", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -149352,7 +149353,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -149498,13 +149498,13 @@ "specLocation": "ml/_types/DataframeEvaluation.ts#L35-L44" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeEvaluationMetrics", "namespace": "ml._types" } }, - "kind": "interface", "name": { "name": "DataframeEvaluationClassificationMetrics", "namespace": "ml._types" @@ -149515,6 +149515,7 @@ "name": "accuracy", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149522,7 +149523,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149534,6 +149534,7 @@ "name": "multiclass_confusion_matrix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149541,7 +149542,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149658,6 +149658,7 @@ "name": "precision", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149665,7 +149666,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149677,6 +149677,7 @@ "name": "recall", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149684,7 +149685,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149741,13 +149741,13 @@ "specLocation": "ml/_types/DataframeEvaluation.ts#L46-L53" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeEvaluationMetrics", "namespace": "ml._types" } }, - "kind": "interface", "name": { "name": "DataframeEvaluationOutlierDetectionMetrics", "namespace": "ml._types" @@ -149758,6 +149758,7 @@ "name": "confusion_matrix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149765,7 +149766,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149834,6 +149834,7 @@ "name": "mse", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149841,7 +149842,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -149879,6 +149879,7 @@ "name": "r_squared", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -149886,7 +149887,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -150110,6 +150110,7 @@ "name": "scope", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -150117,7 +150118,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -150266,6 +150266,7 @@ "specLocation": "ml/_types/Detector.ts#L25-L67" }, { + "kind": "interface", "attachedBehaviors": [ "OverloadOf" ], @@ -150286,7 +150287,6 @@ } } ], - "kind": "interface", "name": { "name": "DetectorRead", "namespace": "ml._types" @@ -150432,6 +150432,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -150439,7 +150440,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -150520,8 +150520,8 @@ "specLocation": "ml/_types/Detector.ts#L127-L132" }, { - "description": "Fill mask inference options", "kind": "interface", + "description": "Fill mask inference options", "name": { "name": "FillMaskInferenceOptions", "namespace": "ml._types" @@ -151039,8 +151039,8 @@ "specLocation": "ml/_types/Include.ts#L20-L47" }, { - "description": "Inference configuration provided when storing the model config", "kind": "interface", + "description": "Inference configuration provided when storing the model config", "name": { "name": "InferenceConfigCreateContainer", "namespace": "ml._types" @@ -151392,6 +151392,7 @@ "name": "predicted_value", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -151410,8 +151411,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -151542,6 +151542,7 @@ "name": "bucket_span", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -151551,7 +151552,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -151659,6 +151659,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -151668,7 +151669,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -152295,6 +152295,7 @@ "name": "status", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -152302,7 +152303,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -152566,6 +152566,7 @@ "name": "average_bucket_processing_time_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152575,7 +152576,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -152597,6 +152597,7 @@ "name": "exponential_average_bucket_processing_time_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152606,7 +152607,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -152617,6 +152617,7 @@ "name": "exponential_average_bucket_processing_time_per_hour_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152626,7 +152627,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -152648,6 +152648,7 @@ "name": "total_bucket_processing_time_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152657,7 +152658,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -152668,6 +152668,7 @@ "name": "maximum_bucket_processing_time_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152677,7 +152678,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -152688,6 +152688,7 @@ "name": "minimum_bucket_processing_time_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -152697,7 +152698,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -153226,8 +153226,8 @@ "specLocation": "ml/_types/Model.ts#L48-L57" }, { - "description": "Named entity recognition options", "kind": "interface", + "description": "Named entity recognition options", "name": { "name": "NerInferenceOptions", "namespace": "ml._types" @@ -153321,8 +153321,8 @@ "specLocation": "ml/_types/inference.ts#L404-L409" }, { - "description": "BERT and MPNet tokenization configuration options", "kind": "interface", + "description": "BERT and MPNet tokenization configuration options", "name": { "name": "NlpBertTokenizationConfig", "namespace": "ml._types" @@ -153397,8 +153397,8 @@ "specLocation": "ml/_types/inference.ts#L131-L158" }, { - "description": "RoBERTa tokenization configuration options", "kind": "interface", + "description": "RoBERTa tokenization configuration options", "name": { "name": "NlpRobertaTokenizationConfig", "namespace": "ml._types" @@ -153603,6 +153603,7 @@ "name": "bucket_span", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -153612,7 +153613,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -153675,6 +153675,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -153684,7 +153685,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -153775,8 +153775,8 @@ "specLocation": "ml/_types/Page.ts#L22-L33" }, { - "description": "Pass through configuration options", "kind": "interface", + "description": "Pass through configuration options", "name": { "name": "PassThroughInferenceOptions", "namespace": "ml._types" @@ -153896,6 +153896,7 @@ }, "specLocation": "ml/_types/inference.ts#L457-L457", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -153914,13 +153915,12 @@ } } } - ], - "kind": "union_of" + ] } }, { - "description": "Question answering inference options", "kind": "interface", + "description": "Question answering inference options", "name": { "name": "QuestionAnsweringInferenceOptions", "namespace": "ml._types" @@ -154202,6 +154202,7 @@ "name": "end_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -154211,7 +154212,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -154235,6 +154235,7 @@ "name": "start_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -154244,7 +154245,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -154277,8 +154277,8 @@ "specLocation": "ml/_types/Model.ts#L94-L99" }, { - "description": "Text classification configuration options", "kind": "interface", + "description": "Text classification configuration options", "name": { "name": "TextClassificationInferenceOptions", "namespace": "ml._types" @@ -154400,8 +154400,8 @@ "specLocation": "ml/_types/inference.ts#L363-L372" }, { - "description": "Text embedding inference options", "kind": "interface", + "description": "Text embedding inference options", "name": { "name": "TextEmbeddingInferenceOptions", "namespace": "ml._types" @@ -154480,8 +154480,8 @@ "specLocation": "ml/_types/inference.ts#L392-L396" }, { - "description": "Text expansion inference options", "kind": "interface", + "description": "Text expansion inference options", "name": { "name": "TextExpansionInferenceOptions", "namespace": "ml._types" @@ -154559,6 +154559,7 @@ "name": "elapsed_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -154568,7 +154569,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -154580,6 +154580,7 @@ "name": "iteration_time", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -154589,7 +154590,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -154600,8 +154600,8 @@ "specLocation": "ml/_types/DataframeAnalytics.ts#L563-L568" }, { - "description": "Tokenization options stored in inference configuration", "kind": "interface", + "description": "Tokenization options stored in inference configuration", "name": { "name": "TokenizationConfigContainer", "namespace": "ml._types" @@ -154893,6 +154893,7 @@ "name": "routing_table", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -154900,7 +154901,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -155204,6 +155204,7 @@ "name": "default_field_map", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -155211,7 +155212,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -155405,6 +155405,7 @@ "name": "feature_importance_baseline", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -155412,7 +155413,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -155514,6 +155514,7 @@ "name": "average_inference_time_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -155523,7 +155524,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -155634,6 +155634,7 @@ "name": "start_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -155643,7 +155644,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -155823,6 +155823,7 @@ "name": "start_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -155832,7 +155833,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -156083,6 +156083,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -156092,7 +156093,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -156250,6 +156250,7 @@ "name": "ingest", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -156257,7 +156258,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -156449,8 +156449,8 @@ "specLocation": "ml/_types/inference.ts#L233-L235" }, { - "description": "Zero shot classification configuration options", "kind": "interface", + "description": "Zero shot classification configuration options", "name": { "name": "ZeroShotClassificationInferenceOptions", "namespace": "ml._types" @@ -156601,6 +156601,7 @@ "specLocation": "ml/_types/inference.ts#L374-L383" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -156614,7 +156615,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.clear_trained_model_deployment_cache" @@ -156637,6 +156637,7 @@ "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L25-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -156653,7 +156654,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.clear_trained_model_deployment_cache" @@ -156661,6 +156661,7 @@ "specLocation": "ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheResponse.ts#L20-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -156715,7 +156716,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.close_job" @@ -156778,6 +156778,7 @@ "specLocation": "ml/close_job/MlCloseJobRequest.ts#L24-L77" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -156794,7 +156795,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.close_job" @@ -156802,6 +156802,7 @@ "specLocation": "ml/close_job/MlCloseJobResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -156815,7 +156816,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_calendar" @@ -156838,6 +156838,7 @@ "specLocation": "ml/delete_calendar/MlDeleteCalendarRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -156848,7 +156849,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_calendar" @@ -156856,6 +156856,7 @@ "specLocation": "ml/delete_calendar/MlDeleteCalendarResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -156869,7 +156870,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_calendar_event" @@ -156904,6 +156904,7 @@ "specLocation": "ml/delete_calendar_event/MlDeleteCalendarEventRequest.ts#L23-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -156914,7 +156915,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_calendar_event" @@ -156922,6 +156922,7 @@ "specLocation": "ml/delete_calendar_event/MlDeleteCalendarEventResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -156935,7 +156936,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_calendar_job" @@ -156970,6 +156970,7 @@ "specLocation": "ml/delete_calendar_job/MlDeleteCalendarJobRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -157011,7 +157012,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_calendar_job" @@ -157019,6 +157019,7 @@ "specLocation": "ml/delete_calendar_job/MlDeleteCalendarJobResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157032,7 +157033,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_data_frame_analytics" @@ -157082,6 +157082,7 @@ "specLocation": "ml/delete_data_frame_analytics/MlDeleteDataFrameAnalyticsRequest.ts#L24-L51" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157092,7 +157093,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_data_frame_analytics" @@ -157100,6 +157100,7 @@ "specLocation": "ml/delete_data_frame_analytics/MlDeleteDataFrameAnalyticsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157113,7 +157114,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_datafeed" @@ -157149,6 +157149,7 @@ "specLocation": "ml/delete_datafeed/MlDeleteDatafeedRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157159,7 +157160,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_datafeed" @@ -157167,6 +157167,7 @@ "specLocation": "ml/delete_datafeed/MlDeleteDatafeedResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157207,7 +157208,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_expired_data" @@ -157256,6 +157256,7 @@ "specLocation": "ml/delete_expired_data/MlDeleteExpiredDataRequest.ts#L25-L72" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -157272,7 +157273,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_expired_data" @@ -157280,6 +157280,7 @@ "specLocation": "ml/delete_expired_data/MlDeleteExpiredDataResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157293,7 +157294,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_filter" @@ -157316,6 +157316,7 @@ "specLocation": "ml/delete_filter/MlDeleteFilterRequest.ts#L23-L39" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157326,7 +157327,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_filter" @@ -157334,6 +157334,7 @@ "specLocation": "ml/delete_filter/MlDeleteFilterResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157347,7 +157348,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_forecast" @@ -157409,6 +157409,7 @@ "specLocation": "ml/delete_forecast/MlDeleteForecastRequest.ts#L24-L65" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157419,7 +157420,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_forecast" @@ -157427,6 +157427,7 @@ "specLocation": "ml/delete_forecast/MlDeleteForecastResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157440,7 +157441,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_job" @@ -157502,6 +157502,7 @@ "specLocation": "ml/delete_job/MlDeleteJobRequest.ts#L23-L63" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157512,7 +157513,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_job" @@ -157520,6 +157520,7 @@ "specLocation": "ml/delete_job/MlDeleteJobResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157533,7 +157534,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_model_snapshot" @@ -157568,6 +157568,7 @@ "specLocation": "ml/delete_model_snapshot/MlDeleteModelSnapshotRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157578,7 +157579,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_model_snapshot" @@ -157586,6 +157586,7 @@ "specLocation": "ml/delete_model_snapshot/MlDeleteModelSnapshotResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157599,7 +157600,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_trained_model" @@ -157635,6 +157635,7 @@ "specLocation": "ml/delete_trained_model/MlDeleteTrainedModelRequest.ts#L23-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157645,7 +157646,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_trained_model" @@ -157653,6 +157653,7 @@ "specLocation": "ml/delete_trained_model/MlDeleteTrainedModelResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157666,7 +157667,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.delete_trained_model_alias" @@ -157701,6 +157701,7 @@ "specLocation": "ml/delete_trained_model_alias/MlDeleteTrainedModelAliasRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -157711,7 +157712,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.delete_trained_model_alias" @@ -157719,6 +157719,7 @@ "specLocation": "ml/delete_trained_model_alias/MlDeleteTrainedModelAliasResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -157742,6 +157743,7 @@ "name": "max_bucket_cardinality", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -157749,7 +157751,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -157765,6 +157766,7 @@ "name": "overall_cardinality", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -157772,7 +157774,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -157792,7 +157793,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.estimate_model_memory" @@ -157802,6 +157802,7 @@ "specLocation": "ml/estimate_model_memory/MlEstimateModelMemoryRequest.ts#L26-L62" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -157818,7 +157819,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.estimate_model_memory" @@ -158187,13 +158187,13 @@ "specLocation": "ml/evaluate_data_frame/types.ts#L106-L109" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeEvaluationValue", "namespace": "ml.evaluate_data_frame" } }, - "kind": "interface", "name": { "name": "DataframeEvaluationClass", "namespace": "ml.evaluate_data_frame" @@ -158214,13 +158214,13 @@ "specLocation": "ml/evaluate_data_frame/types.ts#L116-L118" }, { + "kind": "interface", "inherits": { "type": { "name": "DataframeEvaluationValue", "namespace": "ml.evaluate_data_frame" } }, - "kind": "interface", "name": { "name": "DataframeEvaluationSummaryAucRoc", "namespace": "ml.evaluate_data_frame" @@ -158332,6 +158332,7 @@ "name": "precision", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -158339,7 +158340,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -158355,6 +158355,7 @@ "name": "recall", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -158362,7 +158363,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -158378,6 +158378,7 @@ "name": "confusion_matrix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -158385,7 +158386,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -158458,6 +158458,7 @@ "specLocation": "ml/evaluate_data_frame/types.ts#L68-L85" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -158511,7 +158512,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.evaluate_data_frame" @@ -158521,6 +158521,7 @@ "specLocation": "ml/evaluate_data_frame/MlEvaluateDataFrameRequest.ts#L25-L52" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -158559,7 +158560,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.evaluate_data_frame" @@ -158567,6 +158567,7 @@ "specLocation": "ml/evaluate_data_frame/MlEvaluateDataFrameResponse.ts#L26-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -158685,7 +158686,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.explain_data_frame_analytics" @@ -158708,6 +158708,7 @@ "specLocation": "ml/explain_data_frame_analytics/MlExplainDataFrameAnalyticsRequest.ts#L30-L107" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -158740,7 +158741,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.explain_data_frame_analytics" @@ -158748,6 +158748,7 @@ "specLocation": "ml/explain_data_frame_analytics/MlExplainDataFrameAnalyticsResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -158823,7 +158824,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.flush_job" @@ -158907,6 +158907,7 @@ "specLocation": "ml/flush_job/MlFlushJobRequest.ts#L24-L99" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -158935,7 +158936,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.flush_job" @@ -158943,6 +158943,7 @@ "specLocation": "ml/flush_job/MlFlushJobResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -158997,7 +158998,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.forecast" @@ -159060,6 +159060,7 @@ "specLocation": "ml/forecast/MlForecastJobRequest.ts#L24-L87" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159087,7 +159088,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.forecast" @@ -159095,6 +159095,7 @@ "specLocation": "ml/forecast/MlForecastJobResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159212,7 +159213,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_buckets" @@ -159365,6 +159365,7 @@ "specLocation": "ml/get_buckets/MlGetBucketsRequest.ts#L26-L133" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159395,7 +159396,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_buckets" @@ -159403,6 +159403,7 @@ "specLocation": "ml/get_buckets/MlGetBucketsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159416,7 +159417,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_calendar_events" @@ -159502,6 +159502,7 @@ "specLocation": "ml/get_calendar_events/MlGetCalendarEventsRequest.ts#L25-L53" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159532,7 +159533,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_calendar_events" @@ -159589,6 +159589,7 @@ "specLocation": "ml/get_calendars/types.ts#L22-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159616,7 +159617,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_calendars" @@ -159666,6 +159666,7 @@ "specLocation": "ml/get_calendars/MlGetCalendarsRequest.ts#L25-L51" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159696,7 +159697,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_calendars" @@ -159704,6 +159704,7 @@ "specLocation": "ml/get_calendars/MlGetCalendarsResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159731,7 +159732,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_categories" @@ -159805,6 +159805,7 @@ "specLocation": "ml/get_categories/MlGetCategoriesRequest.ts#L25-L70" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159835,7 +159836,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_categories" @@ -159843,6 +159843,7 @@ "specLocation": "ml/get_categories/MlGetCategoriesResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159856,7 +159857,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_data_frame_analytics" @@ -159932,6 +159932,7 @@ "specLocation": "ml/get_data_frame_analytics/MlGetDataFrameAnalyticsRequest.ts#L24-L77" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -159963,7 +159964,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_data_frame_analytics" @@ -159971,6 +159971,7 @@ "specLocation": "ml/get_data_frame_analytics/MlGetDataFrameAnalyticsResponse.ts#L23-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -159984,7 +159985,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_data_frame_analytics_stats" @@ -160060,6 +160060,7 @@ "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsRequest.ts#L24-L72" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160091,7 +160092,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_data_frame_analytics_stats" @@ -160099,6 +160099,7 @@ "specLocation": "ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L24-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160112,7 +160113,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_datafeed_stats" @@ -160148,6 +160148,7 @@ "specLocation": "ml/get_datafeed_stats/MlGetDatafeedStatsRequest.ts#L23-L60" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160178,7 +160179,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_datafeed_stats" @@ -160186,6 +160186,7 @@ "specLocation": "ml/get_datafeed_stats/MlGetDatafeedStatsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160199,7 +160200,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_datafeeds" @@ -160248,6 +160248,7 @@ "specLocation": "ml/get_datafeeds/MlGetDatafeedsRequest.ts#L23-L66" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160278,7 +160279,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_datafeeds" @@ -160286,6 +160286,7 @@ "specLocation": "ml/get_datafeeds/MlGetDatafeedsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160299,7 +160300,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_filters" @@ -160349,6 +160349,7 @@ "specLocation": "ml/get_filters/MlGetFiltersRequest.ts#L24-L51" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160379,7 +160380,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_filters" @@ -160387,6 +160387,7 @@ "specLocation": "ml/get_filters/MlGetFiltersResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160414,7 +160415,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_influencers" @@ -160541,6 +160541,7 @@ "specLocation": "ml/get_influencers/MlGetInfluencersRequest.ts#L26-L97" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160572,7 +160573,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_influencers" @@ -160580,6 +160580,7 @@ "specLocation": "ml/get_influencers/MlGetInfluencersResponse.ts#L23-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160593,7 +160594,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_job_stats" @@ -160630,6 +160630,7 @@ "specLocation": "ml/get_job_stats/MlGetJobStatsRequest.ts#L23-L56" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160660,7 +160661,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_job_stats" @@ -160668,6 +160668,7 @@ "specLocation": "ml/get_job_stats/MlGetJobStatsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -160681,7 +160682,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_jobs" @@ -160731,6 +160731,7 @@ "specLocation": "ml/get_jobs/MlGetJobsRequest.ts#L23-L66" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -160761,7 +160762,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_jobs" @@ -161061,6 +161061,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -161068,7 +161069,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -161157,6 +161157,7 @@ "specLocation": "ml/get_memory_stats/types.ts#L25-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -161170,7 +161171,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_memory_stats" @@ -161232,6 +161232,7 @@ "specLocation": "ml/get_memory_stats/MlGetMemoryStatsRequest.ts#L24-L60" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -161261,6 +161262,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -161268,7 +161270,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -161281,7 +161282,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_memory_stats" @@ -161289,6 +161289,7 @@ "specLocation": "ml/get_memory_stats/MlGetMemoryStatsResponse.ts#L25-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -161302,7 +161303,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_model_snapshot_upgrade_stats" @@ -161350,6 +161350,7 @@ "specLocation": "ml/get_model_snapshot_upgrade_stats/MlGetModelSnapshotUpgradeStatsRequest.ts#L23-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -161380,7 +161381,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_model_snapshot_upgrade_stats" @@ -161388,6 +161388,7 @@ "specLocation": "ml/get_model_snapshot_upgrade_stats/MlGetModelSnapshotUpgradeStatsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -161463,7 +161464,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_model_snapshots" @@ -161574,6 +161574,7 @@ "specLocation": "ml/get_model_snapshots/MlGetModelSnapshotsRequest.ts#L26-L96" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -161604,7 +161605,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_model_snapshots" @@ -161612,6 +161612,7 @@ "specLocation": "ml/get_model_snapshots/MlGetModelSnapshotsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -161673,6 +161674,7 @@ "name": "overall_score", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -161688,8 +161690,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -161726,7 +161727,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_overall_buckets" @@ -161801,6 +161801,7 @@ "name": "overall_score", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -161816,8 +161817,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -161849,6 +161849,7 @@ "specLocation": "ml/get_overall_buckets/MlGetOverallBucketsRequest.ts#L25-L145" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -161880,7 +161881,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_overall_buckets" @@ -161888,6 +161888,7 @@ "specLocation": "ml/get_overall_buckets/MlGetOverallBucketsResponse.ts#L23-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -161992,7 +161993,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_records" @@ -162120,6 +162120,7 @@ "specLocation": "ml/get_records/MlGetAnomalyRecordsRequest.ts#L26-L127" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162150,7 +162151,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_records" @@ -162158,6 +162158,7 @@ "specLocation": "ml/get_records/MlGetAnomalyRecordsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162171,7 +162172,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_trained_models" @@ -162273,6 +162273,7 @@ "name": "tags", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -162291,14 +162292,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "ml/get_trained_models/MlGetTrainedModelRequest.ts#L25-L91" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162330,7 +162331,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_trained_models" @@ -162338,6 +162338,7 @@ "specLocation": "ml/get_trained_models/MlGetTrainedModelResponse.ts#L23-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162351,7 +162352,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.get_trained_models_stats" @@ -162414,6 +162414,7 @@ "specLocation": "ml/get_trained_models_stats/MlGetTrainedModelStatsRequest.ts#L24-L65" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162446,7 +162447,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.get_trained_models_stats" @@ -162454,6 +162454,7 @@ "specLocation": "ml/get_trained_models_stats/MlGetTrainedModelStatsResponse.ts#L23-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162467,6 +162468,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -162474,7 +162476,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -162503,7 +162504,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.infer_trained_model" @@ -162540,6 +162540,7 @@ "specLocation": "ml/infer_trained_model/MlInferTrainedModelRequest.ts#L27-L59" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162559,7 +162560,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.infer_trained_model" @@ -162760,6 +162760,7 @@ "specLocation": "ml/info/types.ts#L29-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162773,7 +162774,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.info" @@ -162783,6 +162783,7 @@ "specLocation": "ml/info/MlInfoRequest.ts#L22-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162832,7 +162833,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.info" @@ -162840,6 +162840,7 @@ "specLocation": "ml/info/MlInfoResponse.ts#L22-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162868,7 +162869,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.open_job" @@ -162905,6 +162905,7 @@ "specLocation": "ml/open_job/MlOpenJobRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -162933,7 +162934,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.open_job" @@ -162941,6 +162941,7 @@ "specLocation": "ml/open_job/MlOpenJobResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -162971,7 +162972,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.post_calendar_events" @@ -162994,6 +162994,7 @@ "specLocation": "ml/post_calendar_events/MlPostCalendarEventsRequest.ts#L24-L40" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163013,7 +163014,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.post_calendar_events" @@ -163021,12 +163021,13 @@ "specLocation": "ml/post_calendar_events/MlPostCalendarEventsResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "data", "kind": "value", + "codegenName": "data", "value": { "kind": "array_of", "value": { @@ -163055,7 +163056,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.post_data" @@ -163103,6 +163103,7 @@ "specLocation": "ml/post_data/MlPostJobDataRequest.ts#L24-L68" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163273,7 +163274,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.post_data" @@ -163346,6 +163346,7 @@ "specLocation": "ml/preview_data_frame_analytics/types.ts#L27-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -163375,7 +163376,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.preview_data_frame_analytics" @@ -163398,6 +163398,7 @@ "specLocation": "ml/preview_data_frame_analytics/MlPreviewDataFrameAnalyticsRequest.ts#L24-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163408,6 +163409,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -163415,7 +163417,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -163429,7 +163430,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.preview_data_frame_analytics" @@ -163437,6 +163437,7 @@ "specLocation": "ml/preview_data_frame_analytics/MlPreviewDataFrameAnalyticsResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -163476,7 +163477,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.preview_datafeed" @@ -163524,6 +163524,7 @@ "specLocation": "ml/preview_datafeed/MlPreviewDatafeedRequest.ts#L26-L69" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -163543,7 +163544,6 @@ "namespace": "ml.preview_datafeed.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "ml.preview_datafeed" @@ -163551,6 +163551,7 @@ "specLocation": "ml/preview_datafeed/MlPreviewDatafeedResponse.ts#L20-L23" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -163593,7 +163594,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_calendar" @@ -163616,6 +163616,7 @@ "specLocation": "ml/put_calendar/MlPutCalendarRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163657,7 +163658,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_calendar" @@ -163665,6 +163665,7 @@ "specLocation": "ml/put_calendar/MlPutCalendarResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -163678,7 +163679,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_calendar_job" @@ -163713,6 +163713,7 @@ "specLocation": "ml/put_calendar_job/MlPutCalendarJobRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163754,7 +163755,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_calendar_job" @@ -163762,6 +163762,7 @@ "specLocation": "ml/put_calendar_job/MlPutCalendarJobResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -163912,7 +163913,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_data_frame_analytics" @@ -163935,6 +163935,7 @@ "specLocation": "ml/put_data_frame_analytics/MlPutDataFrameAnalyticsRequest.ts#L30-L141" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -163986,6 +163987,7 @@ "name": "create_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -163995,7 +163997,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -164081,7 +164082,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_data_frame_analytics" @@ -164089,6 +164089,7 @@ "specLocation": "ml/put_data_frame_analytics/MlPutDataFrameAnalyticsResponse.ts#L31-L46" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -164100,6 +164101,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -164107,7 +164109,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -164247,6 +164248,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -164254,7 +164256,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -164304,7 +164305,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_datafeed" @@ -164384,6 +164384,7 @@ "specLocation": "ml/put_datafeed/MlPutDatafeedRequest.ts#L37-L172" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -164391,6 +164392,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -164398,7 +164400,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -164548,6 +164549,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -164555,7 +164557,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -164579,7 +164580,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_datafeed" @@ -164587,6 +164587,7 @@ "specLocation": "ml/put_datafeed/MlPutDatafeedResponse.ts#L31-L49" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -164629,7 +164630,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_filter" @@ -164652,6 +164652,7 @@ "specLocation": "ml/put_filter/MlPutFilterRequest.ts#L23-L50" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -164693,7 +164694,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_filter" @@ -164701,6 +164701,7 @@ "specLocation": "ml/put_filter/MlPutFilterResponse.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -164903,7 +164904,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_job" @@ -164926,6 +164926,7 @@ "specLocation": "ml/put_job/MlPutJobRequest.ts#L30-L112" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -165154,7 +165155,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_job" @@ -165359,6 +165359,7 @@ "name": "frequency_map", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -165366,7 +165367,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -165423,6 +165423,7 @@ "name": "hot_map", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -165430,7 +165431,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -165491,6 +165491,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -165644,7 +165645,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_trained_model" @@ -165704,6 +165704,7 @@ "specLocation": "ml/put_trained_model/MlPutTrainedModelRequest.ts#L29-L125" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -165714,7 +165715,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_trained_model" @@ -165754,6 +165754,7 @@ "name": "target_map", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -165761,7 +165762,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -166026,6 +166026,7 @@ "specLocation": "ml/put_trained_model/types.ts#L108-L110" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166039,7 +166040,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_trained_model_alias" @@ -166088,6 +166088,7 @@ "specLocation": "ml/put_trained_model_alias/MlPutTrainedModelAliasRequest.ts#L23-L66" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -166098,7 +166099,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_trained_model_alias" @@ -166106,6 +166106,7 @@ "specLocation": "ml/put_trained_model_alias/MlPutTrainedModelAliasResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166157,7 +166158,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_trained_model_definition_part" @@ -166192,6 +166192,7 @@ "specLocation": "ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartRequest.ts#L24-L57" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -166202,7 +166203,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_trained_model_definition_part" @@ -166210,6 +166210,7 @@ "specLocation": "ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166282,7 +166283,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.put_trained_model_vocabulary" @@ -166305,6 +166305,7 @@ "specLocation": "ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyRequest.ts#L24-L60" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -166315,7 +166316,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.put_trained_model_vocabulary" @@ -166323,6 +166323,7 @@ "specLocation": "ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166336,7 +166337,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.reset_job" @@ -166386,6 +166386,7 @@ "specLocation": "ml/reset_job/MlResetJobRequest.ts#L23-L57" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -166396,7 +166397,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.reset_job" @@ -166404,6 +166404,7 @@ "specLocation": "ml/reset_job/MlResetJobResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166432,7 +166433,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.revert_model_snapshot" @@ -166481,6 +166481,7 @@ "specLocation": "ml/revert_model_snapshot/MlRevertModelSnapshotRequest.ts#L23-L69" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -166497,7 +166498,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.revert_model_snapshot" @@ -166505,6 +166505,7 @@ "specLocation": "ml/revert_model_snapshot/MlRevertModelSnapshotResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166518,7 +166519,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.set_upgrade_mode" @@ -166555,6 +166555,7 @@ "specLocation": "ml/set_upgrade_mode/MlSetUpgradeModeRequest.ts#L23-L57" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -166565,7 +166566,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.set_upgrade_mode" @@ -166573,6 +166573,7 @@ "specLocation": "ml/set_upgrade_mode/MlSetUpgradeModeResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166586,7 +166587,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.start_data_frame_analytics" @@ -166623,6 +166623,7 @@ "specLocation": "ml/start_data_frame_analytics/MlStartDataFrameAnalyticsRequest.ts#L24-L60" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -166651,7 +166652,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.start_data_frame_analytics" @@ -166659,6 +166659,7 @@ "specLocation": "ml/start_data_frame_analytics/MlStartDataFrameAnalyticsResponse.ts#L22-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166711,7 +166712,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.start_datafeed" @@ -166772,6 +166772,7 @@ "specLocation": "ml/start_datafeed/MlStartDatafeedRequest.ts#L24-L91" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -166801,7 +166802,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.start_datafeed" @@ -166809,6 +166809,7 @@ "specLocation": "ml/start_datafeed/MlStartDatafeedResponse.ts#L22-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166822,7 +166823,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.start_trained_model_deployment" @@ -166952,6 +166952,7 @@ "specLocation": "ml/start_trained_model_deployment/MlStartTrainedModelDeploymentRequest.ts#L29-L93" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -166968,7 +166969,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.start_trained_model_deployment" @@ -166976,6 +166976,7 @@ "specLocation": "ml/start_trained_model_deployment/MlStartTrainedModelDeploymentResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -166989,7 +166990,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.stop_data_frame_analytics" @@ -167052,6 +167052,7 @@ "specLocation": "ml/stop_data_frame_analytics/MlStopDataFrameAnalyticsRequest.ts#L24-L70" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -167068,7 +167069,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.stop_data_frame_analytics" @@ -167076,6 +167076,7 @@ "specLocation": "ml/stop_data_frame_analytics/MlStopDataFrameAnalyticsResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -167130,7 +167131,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.stop_datafeed" @@ -167193,6 +167193,7 @@ "specLocation": "ml/stop_datafeed/MlStopDatafeedRequest.ts#L24-L78" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -167209,7 +167210,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.stop_datafeed" @@ -167217,6 +167217,7 @@ "specLocation": "ml/stop_datafeed/MlStopDatafeedResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -167230,7 +167231,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.stop_trained_model_deployment" @@ -167280,6 +167280,7 @@ "specLocation": "ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentRequest.ts#L23-L53" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -167296,7 +167297,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.stop_trained_model_deployment" @@ -167304,6 +167304,7 @@ "specLocation": "ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -167374,7 +167375,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_data_frame_analytics" @@ -167397,6 +167397,7 @@ "specLocation": "ml/update_data_frame_analytics/MlUpdateDataFrameAnalyticsRequest.ts#L24-L72" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -167534,7 +167535,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_data_frame_analytics" @@ -167542,6 +167542,7 @@ "specLocation": "ml/update_data_frame_analytics/MlUpdateDataFrameAnalyticsResponse.ts#L30-L45" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -167553,6 +167554,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -167560,7 +167562,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -167702,6 +167703,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -167709,7 +167711,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -167742,7 +167743,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_datafeed" @@ -167822,6 +167822,7 @@ "specLocation": "ml/update_datafeed/MlUpdateDatafeedRequest.ts#L31-L162" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -167840,6 +167841,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -167847,7 +167849,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -167986,6 +167987,7 @@ "name": "script_fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -167993,7 +167995,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -168017,7 +168018,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_datafeed" @@ -168025,6 +168025,7 @@ "specLocation": "ml/update_datafeed/MlUpdateDatafeedResponse.ts#L31-L49" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -168082,7 +168083,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_filter" @@ -168105,6 +168105,7 @@ "specLocation": "ml/update_filter/MlUpdateFilterRequest.ts#L23-L52" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -168146,7 +168147,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_filter" @@ -168154,6 +168154,7 @@ "specLocation": "ml/update_filter/MlUpdateFilterResponse.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -168204,6 +168205,7 @@ "name": "custom_settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -168211,7 +168213,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -168371,7 +168372,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_job" @@ -168394,6 +168394,7 @@ "specLocation": "ml/update_job/MlUpdateJobRequest.ts#L33-L139" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -168445,6 +168446,7 @@ "name": "create_time", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -168454,7 +168456,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -168465,6 +168466,7 @@ "name": "finished_time", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -168474,7 +168476,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -168485,6 +168486,7 @@ "name": "custom_settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -168492,7 +168494,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -168662,7 +168663,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_job" @@ -168670,6 +168670,7 @@ "specLocation": "ml/update_job/MlUpdateJobResponse.ts#L29-L53" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -168710,7 +168711,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_model_snapshot" @@ -168745,6 +168745,7 @@ "specLocation": "ml/update_model_snapshot/MlUpdateModelSnapshotRequest.ts#L23-L55" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -168772,7 +168773,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_model_snapshot" @@ -168780,6 +168780,7 @@ "specLocation": "ml/update_model_snapshot/MlUpdateModelSnapshotResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -168808,7 +168809,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.update_trained_model_deployment" @@ -168845,6 +168845,7 @@ "specLocation": "ml/update_trained_model_deployment/MlUpdateTrainedModelDeploymentRequest.ts#L24-L62" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -168861,7 +168862,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.update_trained_model_deployment" @@ -168869,6 +168869,7 @@ "specLocation": "ml/update_trained_model_deployment/MlUpdateTrainedModelDeploymentResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -168882,7 +168883,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.upgrade_job_snapshot" @@ -168944,6 +168944,7 @@ "specLocation": "ml/upgrade_job_snapshot/MlUpgradeJobSnapshotRequest.ts#L24-L64" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -168973,7 +168974,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.upgrade_job_snapshot" @@ -168981,6 +168981,7 @@ "specLocation": "ml/upgrade_job_snapshot/MlUpgradeJobSnapshotResponse.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -169095,7 +169096,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.validate" @@ -169105,6 +169105,7 @@ "specLocation": "ml/validate/MlValidateJobRequest.ts#L27-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -169115,7 +169116,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.validate" @@ -169123,12 +169123,13 @@ "specLocation": "ml/validate/MlValidateJobResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "detector", "kind": "value", + "codegenName": "detector", "value": { "kind": "instance_of", "type": { @@ -169144,7 +169145,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ml.validate_detector" @@ -169154,6 +169154,7 @@ "specLocation": "ml/validate_detector/MlValidateDetectorRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -169164,7 +169165,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ml.validate_detector" @@ -169172,15 +169172,17 @@ "specLocation": "ml/validate_detector/MlValidateDetectorResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "operations", "kind": "value", + "codegenName": "operations", "value": { "kind": "array_of", "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -169190,6 +169192,7 @@ } }, { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -169206,7 +169209,6 @@ } } ], - "kind": "instance_of", "type": { "name": "UpdateAction", "namespace": "_global.bulk" @@ -169219,8 +169221,7 @@ "namespace": "monitoring.bulk.Request" } } - ], - "kind": "union_of" + ] } } }, @@ -169241,7 +169242,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "monitoring.bulk" @@ -169305,6 +169305,7 @@ "specLocation": "monitoring/bulk/BulkMonitoringRequest.ts#L24-L59" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -169356,7 +169357,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "monitoring.bulk" @@ -169679,6 +169679,7 @@ "name": "time_throttled_nanos", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -169688,7 +169689,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -169992,6 +169992,7 @@ "name": "computation_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170001,7 +170002,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170025,6 +170025,7 @@ "name": "publication_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170034,7 +170035,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170058,6 +170058,7 @@ "name": "context_construction_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170067,7 +170068,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170091,6 +170091,7 @@ "name": "commit_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170100,7 +170101,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170124,6 +170124,7 @@ "name": "completion_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170133,7 +170134,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170157,6 +170157,7 @@ "name": "master_apply_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170166,7 +170167,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170190,6 +170190,7 @@ "name": "notification_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170199,7 +170200,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170296,6 +170296,7 @@ "name": "sys_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170305,7 +170306,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170327,6 +170327,7 @@ "name": "total_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170336,7 +170337,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170358,6 +170358,7 @@ "name": "user_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170367,7 +170368,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170378,6 +170378,7 @@ "name": "load_average", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -170385,7 +170386,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -170423,6 +170423,7 @@ "name": "usage_nanos", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -170432,7 +170433,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -170673,6 +170673,7 @@ "name": "cluster_state_update", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -170680,7 +170681,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -170717,13 +170717,13 @@ "specLocation": "nodes/_types/Stats.ts#L201-L219" }, { + "kind": "interface", "inherits": { "type": { "name": "MemoryStats", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ExtendedMemoryStats", "namespace": "nodes._types" @@ -170911,6 +170911,7 @@ "name": "collectors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -170918,7 +170919,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -171119,6 +171119,7 @@ "name": "pipelines", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -171126,7 +171127,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -171202,6 +171202,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -171209,7 +171210,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -171226,6 +171226,7 @@ "name": "time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -171235,7 +171236,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -171376,6 +171376,7 @@ "name": "buffer_pools", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -171383,7 +171384,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -171611,6 +171611,7 @@ "name": "pools", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -171618,7 +171619,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -171925,17 +171925,18 @@ "specLocation": "nodes/_types/NodeReloadResult.ts#L24-L27" }, { + "kind": "type_alias", "codegenNames": [ "stats", "error" ], - "kind": "type_alias", "name": { "name": "NodeReloadResult", "namespace": "nodes._types" }, "specLocation": "nodes/_types/NodeReloadResult.ts#L29-L30", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -171951,8 +171952,7 @@ "namespace": "nodes._types" } } - ], - "kind": "union_of" + ] } }, { @@ -172387,6 +172387,7 @@ "name": "time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -172396,7 +172397,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -172496,6 +172496,7 @@ "name": "cumulative_execution_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -172505,7 +172506,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -172620,6 +172620,7 @@ "name": "repository_started_at", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -172629,7 +172630,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -172641,6 +172641,7 @@ "name": "repository_stopped_at", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -172650,7 +172651,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -172931,6 +172931,7 @@ "name": "compilations_history", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -172938,7 +172939,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173088,6 +173088,7 @@ "name": "adaptive_selection", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173095,7 +173096,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173111,6 +173111,7 @@ "name": "breakers", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173118,7 +173119,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173182,6 +173182,7 @@ "name": "ip", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -173200,8 +173201,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -173280,6 +173280,7 @@ "name": "script_cache", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173287,9 +173288,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -173308,8 +173309,7 @@ } } } - ], - "kind": "union_of" + ] } } }, @@ -173318,6 +173318,7 @@ "name": "thread_pool", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173325,7 +173326,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173376,6 +173376,7 @@ "name": "attributes", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173383,7 +173384,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173698,6 +173698,7 @@ "specLocation": "nodes/_types/Stats.ts#L1092-L1106" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -173711,7 +173712,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.clear_repositories_metering_archive" @@ -173746,6 +173746,7 @@ "specLocation": "nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveRequest.ts#L24-L43" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -173756,7 +173757,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.clear_repositories_metering_archive" @@ -173764,13 +173764,13 @@ "specLocation": "nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveResponse.ts#L36-L38" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.clear_repositories_metering_archive" @@ -173793,6 +173793,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173800,7 +173801,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173815,6 +173815,7 @@ "specLocation": "nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveResponse.ts#L25-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -173828,7 +173829,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.get_repositories_metering_info" @@ -173851,6 +173851,7 @@ "specLocation": "nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -173861,7 +173862,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.get_repositories_metering_info" @@ -173869,13 +173869,13 @@ "specLocation": "nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoResponse.ts#L36-L38" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.get_repositories_metering_info" @@ -173898,6 +173898,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -173905,7 +173906,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -173920,6 +173920,7 @@ "specLocation": "nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoResponse.ts#L25-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -173933,7 +173934,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.hot_threads" @@ -174060,11 +174060,11 @@ "specLocation": "nodes/hot_threads/NodesHotThreadsRequest.ts#L25-L83" }, { + "kind": "response", "body": { "kind": "properties", "properties": [] }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.hot_threads" @@ -174082,6 +174082,7 @@ "name": "enabled", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -174097,8 +174098,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -174115,6 +174115,7 @@ "name": "attributes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -174122,7 +174123,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -174298,6 +174298,7 @@ "name": "thread_pool", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -174305,7 +174306,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -174406,6 +174406,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -174413,7 +174414,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -174515,6 +174515,7 @@ "specLocation": "nodes/info/types.ts#L188-L190" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperties" ], @@ -174542,7 +174543,6 @@ } } ], - "kind": "interface", "name": { "name": "NodeInfoDiscover", "namespace": "nodes.info" @@ -175538,6 +175538,7 @@ "name": "compression", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -175553,14 +175554,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "port", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -175576,8 +175577,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], @@ -176032,6 +176032,7 @@ "name": "attr", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176039,7 +176040,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -176182,6 +176182,7 @@ "name": "profiles", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176189,7 +176190,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -176236,6 +176236,7 @@ "name": "notification", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176243,7 +176244,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -176392,6 +176392,7 @@ "name": "file", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176399,7 +176400,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -176414,6 +176414,7 @@ "name": "native", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176421,7 +176422,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -176436,6 +176436,7 @@ "name": "pki", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176443,7 +176444,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -176521,6 +176521,7 @@ "name": "ssl", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -176528,7 +176529,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -176603,6 +176603,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -176612,7 +176613,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -176681,6 +176681,7 @@ "name": "using_compressed_ordinary_object_pointers", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -176696,8 +176697,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -176788,6 +176788,7 @@ "name": "refresh_interval_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -176797,7 +176798,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -176888,6 +176888,7 @@ "name": "refresh_interval_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -176897,7 +176898,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -176984,6 +176984,7 @@ "specLocation": "nodes/info/types.ts#L297-L304" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -176997,7 +176998,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.info" @@ -177072,6 +177072,7 @@ "specLocation": "nodes/info/NodesInfoRequest.ts#L24-L55" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -177082,7 +177083,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.info" @@ -177090,13 +177090,13 @@ "specLocation": "nodes/info/NodesInfoResponse.ts#L30-L32" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.info" @@ -177117,6 +177117,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177124,7 +177125,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -177139,6 +177139,7 @@ "specLocation": "nodes/info/NodesInfoResponse.ts#L25-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -177166,7 +177167,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.reload_secure_settings" @@ -177203,6 +177203,7 @@ "specLocation": "nodes/reload_secure_settings/ReloadSecureSettingsRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -177213,7 +177214,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.reload_secure_settings" @@ -177221,13 +177221,13 @@ "specLocation": "nodes/reload_secure_settings/ReloadSecureSettingsResponse.ts#L30-L32" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.reload_secure_settings" @@ -177248,6 +177248,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177255,7 +177256,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -177270,6 +177270,7 @@ "specLocation": "nodes/reload_secure_settings/ReloadSecureSettingsResponse.ts#L25-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -177283,7 +177284,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.stats" @@ -177458,6 +177458,7 @@ "specLocation": "nodes/stats/NodesStatsRequest.ts#L24-L75" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -177468,7 +177469,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.stats" @@ -177476,13 +177476,13 @@ "specLocation": "nodes/stats/NodesStatsResponse.ts#L30-L32" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.stats" @@ -177503,6 +177503,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177510,7 +177511,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -177535,6 +177535,7 @@ "name": "rest_actions", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177542,7 +177543,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -177557,6 +177557,7 @@ "name": "since", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -177566,7 +177567,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -177577,6 +177577,7 @@ "name": "timestamp", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -177586,7 +177587,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -177597,6 +177597,7 @@ "name": "aggregations", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177604,7 +177605,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -177615,6 +177615,7 @@ "specLocation": "nodes/usage/types.ts#L25-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -177628,7 +177629,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "nodes.usage" @@ -177677,6 +177677,7 @@ "specLocation": "nodes/usage/NodesUsageRequest.ts#L24-L49" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -177687,7 +177688,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "nodes.usage" @@ -177695,13 +177695,13 @@ "specLocation": "nodes/usage/NodesUsageResponse.ts#L30-L32" }, { + "kind": "interface", "inherits": { "type": { "name": "NodesResponseBase", "namespace": "nodes._types" } }, - "kind": "interface", "name": { "name": "ResponseBase", "namespace": "nodes.usage" @@ -177722,6 +177722,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -177729,7 +177730,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -177776,6 +177776,7 @@ "name": "criteria", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -177794,8 +177795,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -178003,6 +178003,7 @@ "specLocation": "query_rules/_types/QueryRuleset.ts#L25-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178016,7 +178017,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.delete_rule" @@ -178051,6 +178051,7 @@ "specLocation": "query_rules/delete_rule/QueryRuleDeleteRequest.ts#L22-L40" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -178061,7 +178062,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.delete_rule" @@ -178069,6 +178069,7 @@ "specLocation": "query_rules/delete_rule/QueryRuleDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178082,7 +178083,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.delete_ruleset" @@ -178105,6 +178105,7 @@ "specLocation": "query_rules/delete_ruleset/QueryRulesetDeleteRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -178115,7 +178116,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.delete_ruleset" @@ -178123,6 +178123,7 @@ "specLocation": "query_rules/delete_ruleset/QueryRulesetDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178136,7 +178137,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.get_rule" @@ -178171,6 +178171,7 @@ "specLocation": "query_rules/get_rule/QueryRuleGetRequest.ts#L22-L40" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -178181,7 +178182,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.get_rule" @@ -178189,6 +178189,7 @@ "specLocation": "query_rules/get_rule/QueryRuleGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178202,7 +178203,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.get_ruleset" @@ -178225,6 +178225,7 @@ "specLocation": "query_rules/get_ruleset/QueryRulesetGetRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -178235,7 +178236,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.get_ruleset" @@ -178278,6 +178278,7 @@ "name": "rule_criteria_types_counts", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -178285,7 +178286,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -178300,6 +178300,7 @@ "specLocation": "query_rules/list_rulesets/types.ts#L23-L37" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178313,7 +178314,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.list_rulesets" @@ -178348,6 +178348,7 @@ "specLocation": "query_rules/list_rulesets/QueryRulesetListRequest.ts#L22-L39" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -178378,7 +178379,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.list_rulesets" @@ -178386,6 +178386,7 @@ "specLocation": "query_rules/list_rulesets/QueryRulesetListResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178407,6 +178408,7 @@ "name": "criteria", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -178425,8 +178427,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -178460,7 +178461,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.put_rule" @@ -178495,6 +178495,7 @@ "specLocation": "query_rules/put_rule/QueryRulePutRequest.ts#L28-L56" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -178511,7 +178512,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.put_rule" @@ -178519,6 +178519,7 @@ "specLocation": "query_rules/put_rule/QueryRulePutResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178529,6 +178530,7 @@ "name": "rules", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -178547,8 +178549,7 @@ } } } - ], - "kind": "union_of" + ] } } ] @@ -178560,7 +178561,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "query_rules.put_ruleset" @@ -178583,6 +178583,7 @@ "specLocation": "query_rules/put_ruleset/QueryRulesetPutRequest.ts#L23-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -178599,7 +178600,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "query_rules.put_ruleset" @@ -178867,6 +178867,7 @@ "specLocation": "rollup/_types/Groupings.ts#L75-L82" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178880,7 +178881,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.delete_job" @@ -178903,6 +178903,7 @@ "specLocation": "rollup/delete_job/DeleteRollupJobRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -178933,7 +178934,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.delete_job" @@ -178966,6 +178966,7 @@ "specLocation": "rollup/get_jobs/types.ts#L66-L72" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -178979,7 +178980,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.get_jobs" @@ -179002,6 +179002,7 @@ "specLocation": "rollup/get_jobs/GetRollupJobRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -179021,7 +179022,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.get_jobs" @@ -179205,6 +179205,7 @@ "name": "index_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -179214,7 +179215,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -179269,6 +179269,7 @@ "name": "search_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -179278,7 +179279,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -179311,6 +179311,7 @@ "name": "processing_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -179320,7 +179321,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -179352,6 +179352,7 @@ "name": "current_position", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179359,7 +179360,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -179392,6 +179392,7 @@ "specLocation": "rollup/get_jobs/types.ts#L60-L64" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -179405,7 +179406,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.get_rollup_caps" @@ -179428,9 +179428,11 @@ "specLocation": "rollup/get_rollup_caps/GetRollupCapabilitiesRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179438,7 +179440,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -179449,7 +179450,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.get_rollup_caps" @@ -179491,6 +179491,7 @@ "name": "fields", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179498,7 +179499,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -179616,6 +179616,7 @@ "specLocation": "rollup/get_rollup_index_caps/types.ts#L24-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -179629,7 +179630,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.get_rollup_index_caps" @@ -179652,9 +179652,11 @@ "specLocation": "rollup/get_rollup_index_caps/GetRollupIndexCapabilitiesRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179662,7 +179664,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -179673,7 +179674,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.get_rollup_index_caps" @@ -179691,6 +179691,7 @@ "name": "fields", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179698,7 +179699,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -179792,6 +179792,7 @@ "specLocation": "rollup/get_rollup_index_caps/types.ts#L35-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -179906,7 +179907,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.put_job" @@ -179929,6 +179929,7 @@ "specLocation": "rollup/put_job/CreateRollupJobRequest.ts#L27-L89" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -179939,7 +179940,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.put_job" @@ -179947,6 +179947,7 @@ "specLocation": "rollup/put_job/CreateRollupJobResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -179961,6 +179962,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -179968,7 +179970,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -180012,7 +180013,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.rollup_search" @@ -180060,6 +180060,7 @@ "specLocation": "rollup/rollup_search/RollupSearchRequest.ts#L27-L57" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -180111,6 +180112,7 @@ "name": "hits", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -180120,7 +180122,6 @@ } } ], - "kind": "instance_of", "type": { "name": "HitsMetadata", "namespace": "_global.search._types" @@ -180131,6 +180132,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -180138,7 +180140,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -180157,7 +180158,6 @@ "namespace": "rollup.rollup_search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "rollup.rollup_search" @@ -180165,6 +180165,7 @@ "specLocation": "rollup/rollup_search/RollupSearchResponse.ts#L27-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180178,7 +180179,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.start_job" @@ -180201,6 +180201,7 @@ "specLocation": "rollup/start_job/StartRollupJobRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -180217,7 +180218,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.start_job" @@ -180225,6 +180225,7 @@ "specLocation": "rollup/start_job/StartRollupJobResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180238,7 +180239,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "rollup.stop_job" @@ -180288,6 +180288,7 @@ "specLocation": "rollup/stop_job/StopRollupJobRequest.ts#L24-L50" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -180304,7 +180305,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "rollup.stop_job" @@ -180393,6 +180393,7 @@ "name": "updated_at_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -180402,7 +180403,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -180459,6 +180459,7 @@ "specLocation": "search_application/_types/SearchApplication.ts#L47-L52" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180472,7 +180473,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.delete" @@ -180495,6 +180495,7 @@ "specLocation": "search_application/delete/SearchApplicationsDeleteRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -180505,7 +180506,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.delete" @@ -180513,6 +180513,7 @@ "specLocation": "search_application/delete/SearchApplicationsDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180526,7 +180527,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.delete_behavioral_analytics" @@ -180549,6 +180549,7 @@ "specLocation": "search_application/delete_behavioral_analytics/BehavioralAnalyticsDeleteRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -180559,7 +180560,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.delete_behavioral_analytics" @@ -180567,6 +180567,7 @@ "specLocation": "search_application/delete_behavioral_analytics/BehavioralAnalyticsDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180580,7 +180581,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.get" @@ -180603,6 +180603,7 @@ "specLocation": "search_application/get/SearchApplicationsGetRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -180613,7 +180614,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.get" @@ -180621,6 +180621,7 @@ "specLocation": "search_application/get/SearchApplicationsGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180634,7 +180635,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.get_behavioral_analytics" @@ -180660,9 +180660,11 @@ "specLocation": "search_application/get_behavioral_analytics/BehavioralAnalyticsGetRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -180670,7 +180672,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -180681,7 +180682,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.get_behavioral_analytics" @@ -180689,6 +180689,7 @@ "specLocation": "search_application/get_behavioral_analytics/BehavioralAnalyticsGetResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180702,7 +180703,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.list" @@ -180750,6 +180750,7 @@ "specLocation": "search_application/list/SearchApplicationsListRequest.ts#L22-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -180780,7 +180781,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.list" @@ -180826,6 +180826,7 @@ "name": "updated_at_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -180835,7 +180836,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -180858,12 +180858,13 @@ "specLocation": "search_application/list/SearchApplicationsListResponse.ts#L31-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "search_application", "kind": "value", + "codegenName": "search_application", "value": { "kind": "instance_of", "type": { @@ -180879,7 +180880,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.put" @@ -180916,6 +180916,7 @@ "specLocation": "search_application/put/SearchApplicationsPutRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -180932,7 +180933,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.put" @@ -180940,13 +180940,13 @@ "specLocation": "search_application/put/SearchApplicationsPutResponse.ts#L22-L26" }, { + "kind": "interface", "inherits": { "type": { "name": "AcknowledgedResponseBase", "namespace": "_types" } }, - "kind": "interface", "name": { "name": "AnalyticsAcknowledgeResponseBase", "namespace": "search_application.put_behavioral_analytics" @@ -180968,6 +180968,7 @@ "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -180981,7 +180982,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.put_behavioral_analytics" @@ -181004,6 +181004,7 @@ "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -181014,7 +181015,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "search_application.put_behavioral_analytics" @@ -181022,6 +181022,7 @@ "specLocation": "search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L24-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -181033,6 +181034,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -181040,7 +181042,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -181056,7 +181057,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "search_application.search" @@ -181099,9 +181099,11 @@ "specLocation": "search_application/search/SearchApplicationsSearchRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -181111,7 +181113,6 @@ } } ], - "kind": "instance_of", "type": { "name": "ResponseBody", "namespace": "_global.search" @@ -181124,7 +181125,6 @@ "namespace": "search_application.search.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "search_application.search" @@ -181172,6 +181172,7 @@ "specLocation": "searchable_snapshots/cache_stats/Response.ts#L30-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -181185,7 +181186,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "searchable_snapshots.cache_stats" @@ -181220,6 +181220,7 @@ "specLocation": "searchable_snapshots/cache_stats/Request.ts#L24-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -181227,6 +181228,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -181234,7 +181236,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -181247,7 +181248,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "searchable_snapshots.cache_stats" @@ -181353,6 +181353,7 @@ "specLocation": "searchable_snapshots/cache_stats/Response.ts#L34-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -181366,7 +181367,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "searchable_snapshots.clear_cache" @@ -181448,13 +181448,13 @@ "specLocation": "searchable_snapshots/clear_cache/SearchableSnapshotsClearCacheRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "value", "value": { "kind": "user_defined_value" } }, - "kind": "response", "name": { "name": "Response", "namespace": "searchable_snapshots.clear_cache" @@ -181505,6 +181505,7 @@ "specLocation": "searchable_snapshots/mount/types.ts#L23-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -181537,6 +181538,7 @@ "name": "index_settings", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -181544,7 +181546,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -181574,7 +181575,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "searchable_snapshots.mount" @@ -181649,6 +181649,7 @@ "specLocation": "searchable_snapshots/mount/SearchableSnapshotsMountRequest.ts#L26-L49" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -181665,7 +181666,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "searchable_snapshots.mount" @@ -181673,6 +181673,7 @@ "specLocation": "searchable_snapshots/mount/SearchableSnapshotsMountResponse.ts#L22-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -181686,7 +181687,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "searchable_snapshots.stats" @@ -181722,6 +181722,7 @@ "specLocation": "searchable_snapshots/stats/SearchableSnapshotsStatsRequest.ts#L24-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -181741,7 +181742,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "searchable_snapshots.stats" @@ -181898,6 +181898,7 @@ "name": "role_descriptors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -181905,7 +181906,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -181929,6 +181929,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -181936,7 +181937,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -182059,6 +182059,7 @@ "name": "details", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -182066,7 +182067,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -182102,8 +182102,8 @@ "specLocation": "security/_types/ClusterNode.ts#L22-L24" }, { - "isOpen": true, "kind": "enum", + "isOpen": true, "members": [ { "name": "all" @@ -182519,8 +182519,8 @@ "specLocation": "security/_types/GrantType.ts#L20-L29" }, { - "isOpen": true, "kind": "enum", + "isOpen": true, "members": [ { "name": "all" @@ -182693,19 +182693,20 @@ "specLocation": "security/_types/Privileges.ts#L197-L221" }, { + "kind": "type_alias", "codegenNames": [ "json_text", "query", "template" ], "description": "While creating or updating a role you can provide either a JSON structure or a string to the API.\nHowever, the response provided by Elasticsearch will only be string with a json-as-text content.\n\nSince this is embedded in `IndicesPrivileges`, the same structure is used for clarity in both contexts.", - "kind": "type_alias", "name": { "name": "IndicesPrivilegesQuery", "namespace": "security._types" }, "specLocation": "security/_types/Privileges.ts#L247-L255", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -182728,8 +182729,7 @@ "namespace": "security._types" } } - ], - "kind": "union_of" + ] } }, { @@ -182836,6 +182836,7 @@ "name": "global", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -182854,8 +182855,7 @@ "namespace": "security._types" } } - ], - "kind": "union_of" + ] } }, { @@ -182918,6 +182918,7 @@ "name": "transient_metadata", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -182925,7 +182926,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -182936,6 +182936,7 @@ "specLocation": "security/_types/RoleDescriptor.ts#L28-L61" }, { + "kind": "interface", "attachedBehaviors": [ "OverloadOf" ], @@ -182956,7 +182957,6 @@ } } ], - "kind": "interface", "name": { "name": "RoleDescriptorRead", "namespace": "security._types" @@ -183003,6 +183003,7 @@ "name": "global", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -183021,8 +183022,7 @@ "namespace": "security._types" } } - ], - "kind": "union_of" + ] } }, { @@ -183085,6 +183085,7 @@ "name": "transient_metadata", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -183092,7 +183093,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -183269,17 +183269,18 @@ "specLocation": "security/_types/RoleTemplate.ts#L28-L31" }, { + "kind": "type_alias", "codegenNames": [ "query_string", "query_object" ], - "kind": "type_alias", "name": { "name": "RoleTemplateInlineQuery", "namespace": "security._types" }, "specLocation": "security/_types/Privileges.ts#L289-L290", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -183295,8 +183296,7 @@ "namespace": "_types.query_dsl" } } - ], - "kind": "union_of" + ] } }, { @@ -183358,6 +183358,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -183365,7 +183366,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -183389,6 +183389,7 @@ "name": "options", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -183396,7 +183397,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -183438,6 +183438,7 @@ "name": "email", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -183453,14 +183454,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "full_name", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -183476,8 +183477,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -183655,6 +183655,7 @@ "name": "data", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -183662,7 +183663,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -183673,6 +183673,7 @@ "name": "labels", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -183680,7 +183681,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -183759,6 +183759,7 @@ "name": "email", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -183774,14 +183775,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "full_name", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -183797,8 +183798,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -183852,13 +183852,13 @@ "specLocation": "security/_types/UserProfile.ts#L33-L40" }, { + "kind": "interface", "inherits": { "type": { "name": "UserProfile", "namespace": "security._types" } }, - "kind": "interface", "name": { "name": "UserProfileWithMetadata", "namespace": "security._types" @@ -183890,6 +183890,7 @@ "specLocation": "security/_types/UserProfile.ts#L50-L53" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -183949,7 +183950,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.activate_user_profile" @@ -183959,6 +183959,7 @@ "specLocation": "security/activate_user_profile/Request.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -183969,7 +183970,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.activate_user_profile" @@ -183977,6 +183977,7 @@ "specLocation": "security/activate_user_profile/Response.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -183990,7 +183991,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.authenticate" @@ -184000,6 +184000,7 @@ "specLocation": "security/authenticate/SecurityAuthenticateRequest.ts#L22-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184029,6 +184030,7 @@ "name": "email", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -184044,14 +184046,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "full_name", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -184067,8 +184069,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -184159,7 +184160,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.authenticate" @@ -184205,6 +184205,7 @@ "specLocation": "security/authenticate/types.ts#L22-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184235,7 +184236,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.bulk_delete_role" @@ -184258,6 +184258,7 @@ "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184305,7 +184306,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.bulk_delete_role" @@ -184313,6 +184313,7 @@ "specLocation": "security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L25-L40" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184324,6 +184325,7 @@ "name": "roles", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -184331,7 +184333,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -184351,7 +184352,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.bulk_put_role" @@ -184374,6 +184374,7 @@ "specLocation": "security/bulk_put_role/SecurityBulkPutRoleRequest.ts#L25-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184436,7 +184437,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.bulk_put_role" @@ -184444,6 +184444,7 @@ "specLocation": "security/bulk_put_role/SecurityBulkPutRoleResponse.ts#L22-L41" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184483,7 +184484,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.change_password" @@ -184519,11 +184519,11 @@ "specLocation": "security/change_password/SecurityChangePasswordRequest.ts#L23-L51" }, { + "kind": "response", "body": { "kind": "properties", "properties": [] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.change_password" @@ -184531,6 +184531,7 @@ "specLocation": "security/change_password/SecurityChangePasswordResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184544,7 +184545,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.clear_api_key_cache" @@ -184567,6 +184567,7 @@ "specLocation": "security/clear_api_key_cache/SecurityClearApiKeyCacheRequest.ts#L23-L40" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184597,6 +184598,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -184604,7 +184606,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -184617,7 +184618,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.clear_api_key_cache" @@ -184625,6 +184625,7 @@ "specLocation": "security/clear_api_key_cache/SecurityClearApiKeyCacheResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184638,7 +184639,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.clear_cached_privileges" @@ -184661,6 +184661,7 @@ "specLocation": "security/clear_cached_privileges/SecurityClearCachedPrivilegesRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184691,6 +184692,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -184698,7 +184700,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -184711,7 +184712,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.clear_cached_privileges" @@ -184719,6 +184719,7 @@ "specLocation": "security/clear_cached_privileges/SecurityClearCachedPrivilegesResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184732,7 +184733,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.clear_cached_realms" @@ -184771,6 +184771,7 @@ "specLocation": "security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184801,6 +184802,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -184808,7 +184810,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -184821,7 +184822,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.clear_cached_realms" @@ -184829,6 +184829,7 @@ "specLocation": "security/clear_cached_realms/SecurityClearCachedRealmsResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184842,7 +184843,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.clear_cached_roles" @@ -184865,6 +184865,7 @@ "specLocation": "security/clear_cached_roles/ClearCachedRolesRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -184895,6 +184896,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -184902,7 +184904,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -184915,7 +184916,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.clear_cached_roles" @@ -184923,6 +184923,7 @@ "specLocation": "security/clear_cached_roles/ClearCachedRolesResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -184936,7 +184937,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.clear_cached_service_tokens" @@ -184983,6 +184983,7 @@ "specLocation": "security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts#L23-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185013,6 +185014,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -185020,7 +185022,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -185033,7 +185034,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.clear_cached_service_tokens" @@ -185041,6 +185041,7 @@ "specLocation": "security/clear_cached_service_tokens/ClearCachedServiceTokensResponse.ts#L25-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185078,6 +185079,7 @@ "name": "role_descriptors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -185085,7 +185087,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -185123,7 +185124,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.create_api_key" @@ -185146,6 +185146,7 @@ "specLocation": "security/create_api_key/SecurityCreateApiKeyRequest.ts#L26-L59" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185217,7 +185218,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.create_api_key" @@ -185225,6 +185225,7 @@ "specLocation": "security/create_api_key/SecurityCreateApiKeyResponse.ts#L23-L50" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185238,7 +185239,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.create_service_token" @@ -185298,6 +185298,7 @@ "specLocation": "security/create_service_token/CreateServiceTokenRequest.ts#L24-L39" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185325,7 +185326,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.create_service_token" @@ -185386,6 +185386,7 @@ "specLocation": "security/delete_privileges/types.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185399,7 +185400,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.delete_privileges" @@ -185447,9 +185447,11 @@ "specLocation": "security/delete_privileges/SecurityDeletePrivilegesRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -185457,9 +185459,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -185467,7 +185469,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -185479,7 +185480,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.delete_privileges" @@ -185487,6 +185487,7 @@ "specLocation": "security/delete_privileges/SecurityDeletePrivilegesResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185500,7 +185501,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.delete_role" @@ -185536,6 +185536,7 @@ "specLocation": "security/delete_role/SecurityDeleteRoleRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185552,7 +185553,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.delete_role" @@ -185560,6 +185560,7 @@ "specLocation": "security/delete_role/SecurityDeleteRoleResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185573,7 +185574,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.delete_role_mapping" @@ -185609,6 +185609,7 @@ "specLocation": "security/delete_role_mapping/SecurityDeleteRoleMappingRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185625,7 +185626,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.delete_role_mapping" @@ -185633,6 +185633,7 @@ "specLocation": "security/delete_role_mapping/SecurityDeleteRoleMappingResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185646,7 +185647,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.delete_service_token" @@ -185706,6 +185706,7 @@ "specLocation": "security/delete_service_token/DeleteServiceTokenRequest.ts#L23-L37" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185722,7 +185723,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.delete_service_token" @@ -185730,6 +185730,7 @@ "specLocation": "security/delete_service_token/DeleteServiceTokenResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185743,7 +185744,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.delete_user" @@ -185779,6 +185779,7 @@ "specLocation": "security/delete_user/SecurityDeleteUserRequest.ts#L23-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -185795,7 +185796,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.delete_user" @@ -185803,6 +185803,7 @@ "specLocation": "security/delete_user/SecurityDeleteUserResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185816,7 +185817,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.disable_user" @@ -185852,11 +185852,11 @@ "specLocation": "security/disable_user/SecurityDisableUserRequest.ts#L23-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.disable_user" @@ -185864,6 +185864,7 @@ "specLocation": "security/disable_user/SecurityDisableUserResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185877,7 +185878,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.disable_user_profile" @@ -185914,6 +185914,7 @@ "specLocation": "security/disable_user_profile/Request.ts#L24-L47" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -185924,7 +185925,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.disable_user_profile" @@ -185932,6 +185932,7 @@ "specLocation": "security/disable_user_profile/Response.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -185945,7 +185946,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.enable_user" @@ -185981,11 +185981,11 @@ "specLocation": "security/enable_user/SecurityEnableUserRequest.ts#L23-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.enable_user" @@ -185993,6 +185993,7 @@ "specLocation": "security/enable_user/SecurityEnableUserResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186006,7 +186007,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.enable_user_profile" @@ -186043,6 +186043,7 @@ "specLocation": "security/enable_user_profile/Request.ts#L24-L47" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -186053,7 +186054,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.enable_user_profile" @@ -186061,6 +186061,7 @@ "specLocation": "security/enable_user_profile/Response.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186074,7 +186075,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.enroll_kibana" @@ -186084,6 +186084,7 @@ "specLocation": "security/enroll_kibana/Request.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -186111,7 +186112,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.enroll_kibana" @@ -186151,6 +186151,7 @@ "specLocation": "security/enroll_kibana/Response.ts#L27-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186164,7 +186165,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.enroll_node" @@ -186174,6 +186174,7 @@ "specLocation": "security/enroll_node/Request.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -186248,7 +186249,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.enroll_node" @@ -186256,6 +186256,7 @@ "specLocation": "security/enroll_node/Response.ts#L20-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186269,7 +186270,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_api_key" @@ -186398,6 +186398,7 @@ "specLocation": "security/get_api_key/SecurityGetApiKeyRequest.ts#L23-L87" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -186417,7 +186418,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_api_key" @@ -186425,6 +186425,7 @@ "specLocation": "security/get_api_key/SecurityGetApiKeyResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186438,7 +186439,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_builtin_privileges" @@ -186448,6 +186448,7 @@ "specLocation": "security/get_builtin_privileges/SecurityGetBuiltinPrivilegesRequest.ts#L22-L28" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -186478,7 +186479,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_builtin_privileges" @@ -186486,6 +186486,7 @@ "specLocation": "security/get_builtin_privileges/SecurityGetBuiltinPrivilegesResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186499,7 +186500,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_privileges" @@ -186534,9 +186534,11 @@ "specLocation": "security/get_privileges/SecurityGetPrivilegesRequest.ts#L23-L33" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186544,9 +186546,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186554,7 +186556,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -186566,7 +186567,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_privileges" @@ -186574,6 +186574,7 @@ "specLocation": "security/get_privileges/SecurityGetPrivilegesResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186587,7 +186588,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_role" @@ -186610,9 +186610,11 @@ "specLocation": "security/get_role/SecurityGetRoleRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186620,7 +186622,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -186631,7 +186632,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_role" @@ -186702,6 +186702,7 @@ "name": "transient_metadata", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186709,7 +186710,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -186754,6 +186754,7 @@ "name": "global", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186761,9 +186762,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186771,9 +186772,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186781,7 +186782,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -186801,6 +186801,7 @@ "specLocation": "security/get_role/types.ts#L29-L42" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186814,7 +186815,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_role_mapping" @@ -186837,9 +186837,11 @@ "specLocation": "security/get_role_mapping/SecurityGetRoleMappingRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186847,7 +186849,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -186858,7 +186859,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_role_mapping" @@ -186866,6 +186866,7 @@ "specLocation": "security/get_role_mapping/SecurityGetRoleMappingResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -186879,7 +186880,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_service_accounts" @@ -186914,9 +186914,11 @@ "specLocation": "security/get_service_accounts/GetServiceAccountsRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186924,7 +186926,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -186935,7 +186936,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_service_accounts" @@ -186987,6 +186987,7 @@ "name": "file_tokens", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -186994,7 +186995,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187033,6 +187033,7 @@ "specLocation": "security/get_service_credentials/types.ts#L30-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -187046,7 +187047,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_service_credentials" @@ -187081,6 +187081,7 @@ "specLocation": "security/get_service_credentials/GetServiceCredentialsRequest.ts#L23-L39" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -187110,6 +187111,7 @@ "name": "tokens", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -187117,7 +187119,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187142,7 +187143,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_service_credentials" @@ -187172,13 +187172,13 @@ "specLocation": "security/get_token/types.ts#L23-L28" }, { + "kind": "interface", "inherits": { "type": { "name": "User", "namespace": "security._types" } }, - "kind": "interface", "name": { "name": "AuthenticatedUser", "namespace": "security.get_token" @@ -187264,6 +187264,7 @@ "specLocation": "security/get_token/types.ts#L35-L38" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -187345,7 +187346,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_token" @@ -187355,6 +187355,7 @@ "specLocation": "security/get_token/GetUserAccessTokenRequest.ts#L25-L39" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -187437,7 +187438,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_token" @@ -187477,6 +187477,7 @@ "specLocation": "security/get_token/types.ts#L30-L33" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -187490,7 +187491,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_user" @@ -187501,6 +187501,7 @@ "name": "username", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -187519,8 +187520,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -187548,9 +187548,11 @@ "specLocation": "security/get_user/SecurityGetUserRequest.ts#L23-L41" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -187558,7 +187560,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187569,7 +187570,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_user" @@ -187577,6 +187577,7 @@ "specLocation": "security/get_user/SecurityGetUserResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -187590,7 +187591,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_user_privileges" @@ -187625,6 +187625,7 @@ "name": "username", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -187640,14 +187641,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ], "specLocation": "security/get_user_privileges/SecurityGetUserPrivilegesRequest.ts#L23-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -187723,7 +187724,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_user_privileges" @@ -187752,6 +187752,7 @@ "name": "details", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -187759,7 +187760,6 @@ "namespace": "security._types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187774,6 +187774,7 @@ "specLocation": "security/get_user_profile/types.ts#L25-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -187787,7 +187788,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.get_user_profile" @@ -187798,6 +187798,7 @@ "name": "uid", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -187816,8 +187817,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -187827,6 +187827,7 @@ "name": "data", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -187845,14 +187846,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "security/get_user_profile/Request.ts#L23-L46" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -187883,7 +187884,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.get_user_profile" @@ -187941,8 +187941,10 @@ "name": "role_descriptors", "required": false, "type": { + "kind": "union_of", "items": [ { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -187950,7 +187952,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187963,6 +187964,7 @@ { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -187970,7 +187972,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -187981,8 +187982,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -188001,6 +188001,7 @@ "specLocation": "security/grant_api_key/types.ts#L25-L46" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -188088,7 +188089,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.grant_api_key" @@ -188098,6 +188098,7 @@ "specLocation": "security/grant_api_key/SecurityGrantApiKeyRequest.ts#L24-L75" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -188138,6 +188139,7 @@ "name": "expiration", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -188147,7 +188149,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -188167,7 +188168,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.grant_api_key" @@ -188234,6 +188234,7 @@ }, "specLocation": "security/has_privileges/types.ts#L46-L46", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188241,7 +188242,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188309,6 +188309,7 @@ }, "specLocation": "security/has_privileges/types.ts#L48-L48", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188316,7 +188317,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188328,6 +188328,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -188386,7 +188387,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.has_privileges" @@ -188416,6 +188416,7 @@ }, "specLocation": "security/has_privileges/types.ts#L47-L47", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188423,7 +188424,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188435,6 +188435,7 @@ } }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -188453,6 +188454,7 @@ "name": "cluster", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188460,7 +188462,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188486,6 +188487,7 @@ "name": "index", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188493,7 +188495,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188517,7 +188518,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.has_privileges" @@ -188546,6 +188546,7 @@ "name": "details", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -188553,7 +188554,6 @@ "namespace": "security._types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -188621,6 +188621,7 @@ "specLocation": "security/has_privileges_user_profile/types.ts#L30-L37" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -188662,7 +188663,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.has_privileges_user_profile" @@ -188672,6 +188672,7 @@ "specLocation": "security/has_privileges_user_profile/Request.ts#L24-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -188704,7 +188705,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.has_privileges_user_profile" @@ -188712,6 +188712,7 @@ "specLocation": "security/has_privileges_user_profile/Response.ts#L23-L38" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -188802,7 +188803,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.invalidate_api_key" @@ -188812,6 +188812,7 @@ "specLocation": "security/invalidate_api_key/SecurityInvalidateApiKeyRequest.ts#L23-L67" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -188870,7 +188871,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.invalidate_api_key" @@ -188878,6 +188878,7 @@ "specLocation": "security/invalidate_api_key/SecurityInvalidateApiKeyResponse.ts#L23-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -188937,7 +188938,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.invalidate_token" @@ -188947,6 +188947,7 @@ "specLocation": "security/invalidate_token/SecurityInvalidateTokenRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -188999,7 +189000,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.invalidate_token" @@ -189064,13 +189064,15 @@ "specLocation": "security/put_privileges/types.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "privileges", "kind": "value", + "codegenName": "privileges", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189078,9 +189080,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189088,7 +189090,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -189107,7 +189108,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.put_privileges" @@ -189130,9 +189130,11 @@ "specLocation": "security/put_privileges/SecurityPutPrivilegesRequest.ts#L25-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189140,9 +189142,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189150,7 +189152,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -189162,7 +189163,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.put_privileges" @@ -189170,6 +189170,7 @@ "specLocation": "security/put_privileges/SecurityPutPrivilegesResponse.ts#L23-L26" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -189214,6 +189215,7 @@ "name": "global", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189221,7 +189223,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -189289,6 +189290,7 @@ "name": "transient_metadata", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189296,7 +189298,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -189312,7 +189313,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.put_role" @@ -189348,6 +189348,7 @@ "specLocation": "security/put_role/SecurityPutRoleRequest.ts#L30-L84" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -189364,7 +189365,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.put_role" @@ -189372,6 +189372,7 @@ "specLocation": "security/put_role/SecurityPutRoleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -189462,7 +189463,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.put_role_mapping" @@ -189498,6 +189498,7 @@ "specLocation": "security/put_role_mapping/SecurityPutRoleMappingRequest.ts#L25-L47" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -189525,7 +189526,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.put_role_mapping" @@ -189533,6 +189533,7 @@ "specLocation": "security/put_role_mapping/SecurityPutRoleMappingResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -189554,6 +189555,7 @@ "name": "email", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -189569,14 +189571,14 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { "name": "full_name", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -189592,8 +189594,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -189663,7 +189664,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.put_user" @@ -189699,6 +189699,7 @@ "specLocation": "security/put_user/SecurityPutUserRequest.ts#L23-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -189715,7 +189716,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.put_user" @@ -189730,6 +189730,7 @@ }, "specLocation": "security/query_api_keys/types.ts#L123-L140", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -189822,8 +189823,7 @@ "namespace": "_types.aggregations" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "external_tag", @@ -189846,6 +189846,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -189853,7 +189854,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -190005,13 +190005,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "BucketAggregationBase", "namespace": "_types.aggregations" } }, - "kind": "interface", "name": { "name": "ApiKeyFiltersAggregation", "namespace": "security.query_api_keys" @@ -190022,6 +190022,7 @@ "name": "filters", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -190031,7 +190032,6 @@ } } ], - "kind": "instance_of", "type": { "name": "Buckets", "namespace": "_types.aggregations" @@ -190135,6 +190135,7 @@ "name": "match", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190142,7 +190143,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190174,6 +190174,7 @@ "name": "prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190181,7 +190182,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190199,6 +190199,7 @@ "name": "range", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190206,7 +190207,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190238,6 +190238,7 @@ "name": "term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190245,7 +190246,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190277,6 +190277,7 @@ "name": "wildcard", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190284,7 +190285,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190303,6 +190303,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -190317,6 +190318,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190324,7 +190326,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -190408,7 +190409,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.query_api_keys" @@ -190475,6 +190475,7 @@ "specLocation": "security/query_api_keys/QueryApiKeysRequest.ts#L26-L100" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -190522,6 +190523,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190529,7 +190531,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -190542,7 +190543,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.query_api_keys" @@ -190550,13 +190550,13 @@ "specLocation": "security/query_api_keys/QueryApiKeysResponse.ts#L26-L45" }, { + "kind": "interface", "inherits": { "type": { "name": "RoleDescriptor", "namespace": "security._types" } }, - "kind": "interface", "name": { "name": "QueryRole", "namespace": "security.query_role" @@ -190589,6 +190589,7 @@ "specLocation": "security/query_role/types.ts#L103-L109" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -190668,7 +190669,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.query_role" @@ -190678,6 +190678,7 @@ "specLocation": "security/query_role/QueryRolesRequest.ts#L25-L67" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -190722,7 +190723,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.query_role" @@ -190785,6 +190785,7 @@ "name": "match", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190792,7 +190793,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190824,6 +190824,7 @@ "name": "prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190831,7 +190832,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190849,6 +190849,7 @@ "name": "range", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190856,7 +190857,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190888,6 +190888,7 @@ "name": "term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190895,7 +190896,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190927,6 +190927,7 @@ "name": "wildcard", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -190934,7 +190935,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -190953,13 +190953,13 @@ } }, { + "kind": "interface", "inherits": { "type": { "name": "User", "namespace": "security._types" } }, - "kind": "interface", "name": { "name": "QueryUser", "namespace": "security.query_user" @@ -190980,6 +190980,7 @@ "specLocation": "security/query_user/types.ts#L103-L105" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191059,7 +191060,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.query_user" @@ -191082,6 +191082,7 @@ "specLocation": "security/query_user/SecurityQueryUserRequest.ts#L25-L72" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191126,7 +191127,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.query_user" @@ -191189,6 +191189,7 @@ "name": "match", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191196,7 +191197,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -191228,6 +191228,7 @@ "name": "prefix", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191235,7 +191236,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -191253,6 +191253,7 @@ "name": "range", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191260,7 +191261,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -191292,6 +191292,7 @@ "name": "term", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191299,7 +191300,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -191331,6 +191331,7 @@ "name": "wildcard", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191338,7 +191339,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -191357,6 +191357,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191408,7 +191409,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_authenticate" @@ -191418,6 +191418,7 @@ "specLocation": "security/saml_authenticate/Request.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191478,7 +191479,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_authenticate" @@ -191486,6 +191486,7 @@ "specLocation": "security/saml_authenticate/Response.ts#L22-L30" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191549,7 +191550,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_complete_logout" @@ -191559,10 +191559,10 @@ "specLocation": "security/saml_complete_logout/Request.ts#L23-L40" }, { + "kind": "response", "body": { "kind": "no_body" }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_complete_logout" @@ -191570,6 +191570,7 @@ "specLocation": "security/saml_complete_logout/Response.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191621,7 +191622,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_invalidate" @@ -191631,6 +191631,7 @@ "specLocation": "security/saml_invalidate/Request.ts#L22-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191669,7 +191670,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_invalidate" @@ -191677,6 +191677,7 @@ "specLocation": "security/saml_invalidate/Response.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191716,7 +191717,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_logout" @@ -191726,6 +191726,7 @@ "specLocation": "security/saml_logout/Request.ts#L22-L41" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191742,7 +191743,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_logout" @@ -191750,6 +191750,7 @@ "specLocation": "security/saml_logout/Response.ts#L20-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191801,7 +191802,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_prepare_authentication" @@ -191811,6 +191811,7 @@ "specLocation": "security/saml_prepare_authentication/Request.ts#L22-L46" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191849,7 +191850,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_prepare_authentication" @@ -191857,6 +191857,7 @@ "specLocation": "security/saml_prepare_authentication/Response.ts#L22-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -191870,7 +191871,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.saml_service_provider_metadata" @@ -191893,6 +191893,7 @@ "specLocation": "security/saml_service_provider_metadata/Request.ts#L23-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -191909,7 +191910,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.saml_service_provider_metadata" @@ -191943,6 +191943,7 @@ "name": "labels", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -191950,9 +191951,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -191971,8 +191972,7 @@ } } } - ], - "kind": "union_of" + ] } } } @@ -191980,6 +191980,7 @@ "specLocation": "security/suggest_user_profiles/types.ts#L23-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192016,6 +192017,7 @@ "name": "data", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -192034,8 +192036,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -192059,7 +192060,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.suggest_user_profiles" @@ -192071,6 +192071,7 @@ "name": "data", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -192089,14 +192090,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "security/suggest_user_profiles/Request.ts#L24-L66" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -192138,7 +192139,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.suggest_user_profiles" @@ -192178,6 +192178,7 @@ "specLocation": "security/suggest_user_profiles/Response.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192191,6 +192192,7 @@ "name": "role_descriptors", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -192198,7 +192200,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -192242,7 +192243,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.update_api_key" @@ -192265,6 +192265,7 @@ "specLocation": "security/update_api_key/Request.ts#L26-L66" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -192282,7 +192283,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "security.update_api_key" @@ -192290,6 +192290,7 @@ "specLocation": "security/update_api_key/Response.ts#L20-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192301,6 +192302,7 @@ "name": "labels", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -192308,7 +192310,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -192320,6 +192321,7 @@ "name": "data", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -192327,7 +192329,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -192343,7 +192344,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "security.update_user_profile_data" @@ -192404,6 +192404,7 @@ "specLocation": "security/update_user_profile_data/Request.ts#L27-L70" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -192414,7 +192415,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "security.update_user_profile_data" @@ -192441,6 +192441,7 @@ "specLocation": "shutdown/_types/types.ts#L20-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192454,7 +192455,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "shutdown.delete_node" @@ -192504,6 +192504,7 @@ "specLocation": "shutdown/delete_node/ShutdownDeleteNodeRequest.ts#L24-L44" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -192514,7 +192515,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "shutdown.delete_node" @@ -192565,6 +192565,7 @@ "name": "shutdown_startedmillis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -192574,7 +192575,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -192671,6 +192671,7 @@ "specLocation": "shutdown/get_node/ShutdownGetNodeResponse.ts#L60-L62" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192684,7 +192685,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "shutdown.get_node" @@ -192734,6 +192734,7 @@ "specLocation": "shutdown/get_node/ShutdownGetNodeRequest.ts#L24-L44" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -192753,7 +192754,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "shutdown.get_node" @@ -192820,6 +192820,7 @@ "specLocation": "shutdown/get_node/ShutdownGetNodeResponse.ts#L40-L43" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -192883,7 +192884,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "shutdown.put_node" @@ -192933,6 +192933,7 @@ "specLocation": "shutdown/put_node/ShutdownPutNodeRequest.ts#L25-L76" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -192943,7 +192944,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "shutdown.put_node" @@ -193060,6 +193060,7 @@ "name": "start_time_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -193069,7 +193070,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -193299,6 +193299,7 @@ "name": "modified_date_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -193308,7 +193309,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -193330,6 +193330,7 @@ "name": "next_execution_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -193339,7 +193340,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -193404,6 +193404,7 @@ "name": "retention_deletion_time_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -193413,7 +193414,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -193524,6 +193524,7 @@ "specLocation": "slm/_types/SnapshotLifecycle.ts#L51-L74" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193537,7 +193538,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.delete_lifecycle" @@ -193560,6 +193560,7 @@ "specLocation": "slm/delete_lifecycle/DeleteSnapshotLifecycleRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -193570,7 +193571,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.delete_lifecycle" @@ -193578,6 +193578,7 @@ "specLocation": "slm/delete_lifecycle/DeleteSnapshotLifecycleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193591,7 +193592,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.execute_lifecycle" @@ -193614,6 +193614,7 @@ "specLocation": "slm/execute_lifecycle/ExecuteSnapshotLifecycleRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -193630,7 +193631,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.execute_lifecycle" @@ -193638,6 +193638,7 @@ "specLocation": "slm/execute_lifecycle/ExecuteSnapshotLifecycleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193651,7 +193652,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.execute_retention" @@ -193661,6 +193661,7 @@ "specLocation": "slm/execute_retention/ExecuteRetentionRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -193671,7 +193672,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.execute_retention" @@ -193679,6 +193679,7 @@ "specLocation": "slm/execute_retention/ExecuteRetentionResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193692,7 +193693,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.get_lifecycle" @@ -193715,9 +193715,11 @@ "specLocation": "slm/get_lifecycle/GetSnapshotLifecycleRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -193725,7 +193727,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -193736,7 +193737,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.get_lifecycle" @@ -193744,6 +193744,7 @@ "specLocation": "slm/get_lifecycle/GetSnapshotLifecycleResponse.ts#L24-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193757,7 +193758,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.get_stats" @@ -193767,6 +193767,7 @@ "specLocation": "slm/get_stats/GetSnapshotLifecycleStatsRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -193785,6 +193786,7 @@ "name": "retention_deletion_time_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -193794,7 +193796,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -193894,7 +193895,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.get_stats" @@ -193902,6 +193902,7 @@ "specLocation": "slm/get_stats/GetSnapshotLifecycleStatsResponse.ts#L23-L36" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -193915,7 +193916,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.get_status" @@ -193925,6 +193925,7 @@ "specLocation": "slm/get_status/GetSnapshotLifecycleManagementStatusRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -193941,7 +193942,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.get_status" @@ -193949,6 +193949,7 @@ "specLocation": "slm/get_status/GetSnapshotLifecycleManagementStatusResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -194024,7 +194025,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.put_lifecycle" @@ -194074,6 +194074,7 @@ "specLocation": "slm/put_lifecycle/PutSnapshotLifecycleRequest.ts#L26-L72" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -194084,7 +194085,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.put_lifecycle" @@ -194092,6 +194092,7 @@ "specLocation": "slm/put_lifecycle/PutSnapshotLifecycleResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -194105,7 +194106,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.start" @@ -194115,6 +194115,7 @@ "specLocation": "slm/start/StartSnapshotLifecycleManagementRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -194125,7 +194126,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.start" @@ -194133,6 +194133,7 @@ "specLocation": "slm/start/StartSnapshotLifecycleManagementResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -194146,7 +194147,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "slm.stop" @@ -194156,6 +194156,7 @@ "specLocation": "slm/stop/StopSnapshotLifecycleManagementRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -194166,7 +194167,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "slm.stop" @@ -194174,13 +194174,13 @@ "specLocation": "slm/stop/StopSnapshotLifecycleManagementResponse.ts#L22-L24" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "AzureRepository", "namespace": "snapshot._types" @@ -194209,13 +194209,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L40-L43" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "AzureRepositorySettings", "namespace": "snapshot._types" @@ -194312,13 +194312,13 @@ "specLocation": "snapshot/_types/FileCountSnapshotStats.ts#L22-L25" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "GcsRepository", "namespace": "snapshot._types" @@ -194347,13 +194347,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L45-L48" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "GcsRepositorySettings", "namespace": "snapshot._types" @@ -194504,13 +194504,13 @@ "specLocation": "snapshot/_types/SnapshotInfoFeatureState.ts#L22-L25" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "ReadOnlyUrlRepository", "namespace": "snapshot._types" @@ -194539,13 +194539,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L60-L63" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "ReadOnlyUrlRepositorySettings", "namespace": "snapshot._types" @@ -194606,6 +194606,7 @@ }, "specLocation": "snapshot/_types/SnapshotRepository.ts#L24-L34", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -194649,8 +194650,7 @@ "namespace": "snapshot._types" } } - ], - "kind": "union_of" + ] }, "variants": { "kind": "internal_tag", @@ -194734,13 +194734,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L70-L75" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "S3Repository", "namespace": "snapshot._types" @@ -194769,13 +194769,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L50-L53" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "S3RepositorySettings", "namespace": "snapshot._types" @@ -195011,6 +195011,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195020,7 +195021,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -195042,6 +195042,7 @@ "name": "time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195051,7 +195052,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -195094,13 +195094,13 @@ "specLocation": "snapshot/_types/SnapshotShardsStatus.ts#L37-L40" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "SharedFileSystemRepository", "namespace": "snapshot._types" @@ -195129,13 +195129,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L55-L58" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "SharedFileSystemRepositorySettings", "namespace": "snapshot._types" @@ -195188,6 +195188,7 @@ "name": "shards", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -195195,7 +195196,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -195267,6 +195267,7 @@ "name": "duration_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195276,7 +195277,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -195298,6 +195298,7 @@ "name": "end_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195307,7 +195308,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -195363,6 +195363,7 @@ "name": "index_details", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -195370,7 +195371,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -195457,6 +195457,7 @@ "name": "start_time_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195466,7 +195467,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -195702,6 +195702,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195711,7 +195712,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -195733,6 +195733,7 @@ "name": "time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -195742,7 +195743,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -195764,13 +195764,13 @@ "specLocation": "snapshot/_types/SnapshotStats.ts#L23-L29" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositoryBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "SourceOnlyRepository", "namespace": "snapshot._types" @@ -195799,13 +195799,13 @@ "specLocation": "snapshot/_types/SnapshotRepository.ts#L65-L68" }, { + "kind": "interface", "inherits": { "type": { "name": "RepositorySettingsBase", "namespace": "snapshot._types" } }, - "kind": "interface", "name": { "name": "SourceOnlyRepositorySettings", "namespace": "snapshot._types" @@ -195872,6 +195872,7 @@ "name": "indices", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -195879,7 +195880,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -195994,6 +195994,7 @@ "specLocation": "snapshot/cleanup_repository/SnapshotCleanupRepositoryResponse.ts#L29-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196007,7 +196008,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.cleanup_repository" @@ -196058,6 +196058,7 @@ "specLocation": "snapshot/cleanup_repository/SnapshotCleanupRepositoryRequest.ts#L24-L49" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -196075,7 +196076,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.cleanup_repository" @@ -196083,6 +196083,7 @@ "specLocation": "snapshot/cleanup_repository/SnapshotCleanupRepositoryResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196109,7 +196110,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.clone" @@ -196180,6 +196180,7 @@ "specLocation": "snapshot/clone/SnapshotCloneRequest.ts#L24-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -196190,7 +196191,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.clone" @@ -196198,6 +196198,7 @@ "specLocation": "snapshot/clone/SnapshotCloneResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196291,7 +196292,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.create" @@ -196353,6 +196353,7 @@ "specLocation": "snapshot/create/SnapshotCreateRequest.ts#L24-L81" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -196388,7 +196389,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.create" @@ -196396,12 +196396,13 @@ "specLocation": "snapshot/create/SnapshotCreateResponse.ts#L22-L35" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], "body": { - "codegenName": "repository", "kind": "value", + "codegenName": "repository", "value": { "kind": "instance_of", "type": { @@ -196417,7 +196418,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.create_repository" @@ -196478,6 +196478,7 @@ "specLocation": "snapshot/create_repository/SnapshotCreateRepositoryRequest.ts#L25-L42" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -196488,7 +196489,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.create_repository" @@ -196496,6 +196496,7 @@ "specLocation": "snapshot/create_repository/SnapshotCreateRepositoryResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196509,7 +196510,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.delete" @@ -196557,6 +196557,7 @@ "specLocation": "snapshot/delete/SnapshotDeleteRequest.ts#L24-L37" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -196567,7 +196568,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.delete" @@ -196575,6 +196575,7 @@ "specLocation": "snapshot/delete/SnapshotDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196588,7 +196589,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.delete_repository" @@ -196637,6 +196637,7 @@ "specLocation": "snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts#L24-L38" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -196647,7 +196648,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.delete_repository" @@ -196655,6 +196655,7 @@ "specLocation": "snapshot/delete_repository/SnapshotDeleteRepositoryResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -196668,7 +196669,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.get" @@ -196924,6 +196924,7 @@ "specLocation": "snapshot/get/SnapshotGetRequest.ts#L27-L127" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -196993,7 +196994,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.get" @@ -197047,6 +197047,7 @@ "specLocation": "snapshot/get/SnapshotGetResponse.ts#L44-L48" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197060,7 +197061,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.get_repository" @@ -197109,9 +197109,11 @@ "specLocation": "snapshot/get_repository/SnapshotGetRepositoryRequest.ts#L24-L38" }, { + "kind": "response", "body": { "kind": "value", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -197119,7 +197121,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -197130,7 +197131,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.get_repository" @@ -197138,6 +197138,7 @@ "specLocation": "snapshot/get_repository/SnapshotGetRepositoryResponse.ts#L23-L25" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197269,7 +197270,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.restore" @@ -197329,6 +197329,7 @@ "specLocation": "snapshot/restore/SnapshotRestoreRequest.ts#L25-L51" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -197345,7 +197346,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.restore" @@ -197399,6 +197399,7 @@ "specLocation": "snapshot/restore/SnapshotRestoreResponse.ts#L27-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197412,7 +197413,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.status" @@ -197472,6 +197472,7 @@ "specLocation": "snapshot/status/SnapshotStatusRequest.ts#L24-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -197491,7 +197492,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.status" @@ -197520,6 +197520,7 @@ "specLocation": "snapshot/verify_repository/SnapshotVerifyRepositoryResponse.ts#L27-L29" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197533,7 +197534,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "snapshot.verify_repository" @@ -197582,6 +197582,7 @@ "specLocation": "snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts#L24-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -197589,6 +197590,7 @@ "name": "nodes", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -197596,7 +197598,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -197609,7 +197610,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "snapshot.verify_repository" @@ -197663,6 +197663,7 @@ } }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197690,7 +197691,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.clear_cursor" @@ -197700,6 +197700,7 @@ "specLocation": "sql/clear_cursor/ClearSqlCursorRequest.ts#L22-L34" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -197716,7 +197717,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.clear_cursor" @@ -197724,6 +197724,7 @@ "specLocation": "sql/clear_cursor/ClearSqlCursorResponse.ts#L20-L22" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197737,7 +197738,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.delete_async" @@ -197760,6 +197760,7 @@ "specLocation": "sql/delete_async/SqlDeleteAsyncRequest.ts#L23-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -197770,7 +197771,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.delete_async" @@ -197778,6 +197778,7 @@ "specLocation": "sql/delete_async/SqlDeleteAsyncResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197791,7 +197792,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.get_async" @@ -197864,6 +197864,7 @@ "specLocation": "sql/get_async/SqlGetAsyncRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -197947,7 +197948,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.get_async" @@ -197955,6 +197955,7 @@ "specLocation": "sql/get_async/SqlGetAsyncResponse.ts#L23-L60" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -197968,7 +197969,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.get_async_status" @@ -197991,6 +197991,7 @@ "specLocation": "sql/get_async_status/SqlGetAsyncStatusRequest.ts#L24-L36" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -198035,6 +198036,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -198044,7 +198046,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -198056,6 +198057,7 @@ "name": "expiration_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -198065,7 +198067,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -198086,7 +198087,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.get_async_status" @@ -198094,6 +198094,7 @@ "specLocation": "sql/get_async_status/SqlGetAsyncStatusResponse.ts#L23-L55" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -198259,6 +198260,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -198266,7 +198268,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -198321,7 +198322,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.query" @@ -198346,6 +198346,7 @@ "specLocation": "sql/query/QuerySqlRequest.ts#L28-L122" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -198429,7 +198430,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.query" @@ -198437,6 +198437,7 @@ "specLocation": "sql/query/QuerySqlResponse.ts#L23-L60" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -198506,7 +198507,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "sql.translate" @@ -198516,6 +198516,7 @@ "specLocation": "sql/translate/TranslateSqlRequest.ts#L25-L54" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -198523,6 +198524,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -198530,7 +198532,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -198601,7 +198602,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "sql.translate" @@ -198619,6 +198619,7 @@ "name": "alias", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -198634,8 +198635,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } }, { @@ -198719,6 +198719,7 @@ "specLocation": "ssl/certificates/types.ts#L22-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -198732,7 +198733,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "ssl.certificates" @@ -198742,6 +198742,7 @@ "specLocation": "ssl/certificates/GetCertificatesRequest.ts#L22-L27" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -198755,7 +198756,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "ssl.certificates" @@ -198797,6 +198797,7 @@ "specLocation": "synonyms/_types/SynonymRule.ts#L26-L35" }, { + "kind": "interface", "attachedBehaviors": [ "OverloadOf" ], @@ -198817,7 +198818,6 @@ } } ], - "kind": "interface", "name": { "name": "SynonymRuleRead", "namespace": "synonyms._types" @@ -198900,6 +198900,7 @@ "specLocation": "synonyms/_types/SynonymsUpdateResult.ts#L23-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -198913,7 +198914,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.delete_synonym" @@ -198936,6 +198936,7 @@ "specLocation": "synonyms/delete_synonym/SynonymsDeleteRequest.ts#L22-L35" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -198946,7 +198947,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.delete_synonym" @@ -198954,6 +198954,7 @@ "specLocation": "synonyms/delete_synonym/SynonymsDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -198967,7 +198968,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.delete_synonym_rule" @@ -199002,6 +199002,7 @@ "specLocation": "synonyms/delete_synonym_rule/SynonymRuleDeleteRequest.ts#L22-L40" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -199012,7 +199013,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.delete_synonym_rule" @@ -199020,6 +199020,7 @@ "specLocation": "synonyms/delete_synonym_rule/SynonymRuleDeleteResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199033,7 +199034,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.get_synonym" @@ -199083,6 +199083,7 @@ "specLocation": "synonyms/get_synonym/SynonymsGetRequest.ts#L23-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -199113,7 +199114,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.get_synonym" @@ -199121,6 +199121,7 @@ "specLocation": "synonyms/get_synonym/SynonymsGetResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199134,7 +199135,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.get_synonym_rule" @@ -199169,6 +199169,7 @@ "specLocation": "synonyms/get_synonym_rule/SynonymRuleGetRequest.ts#L22-L40" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -199179,7 +199180,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.get_synonym_rule" @@ -199187,6 +199187,7 @@ "specLocation": "synonyms/get_synonym_rule/SynonymRuleGetResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199200,7 +199201,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.get_synonyms_sets" @@ -199237,6 +199237,7 @@ "specLocation": "synonyms/get_synonyms_sets/SynonymsSetsGetRequest.ts#L22-L41" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -199267,7 +199268,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.get_synonyms_sets" @@ -199309,6 +199309,7 @@ "specLocation": "synonyms/get_synonyms_sets/SynonymsSetsGetResponse.ts#L30-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199320,6 +199321,7 @@ "name": "synonyms_set", "required": true, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -199338,8 +199340,7 @@ } } } - ], - "kind": "union_of" + ] } } ] @@ -199351,7 +199352,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.put_synonym" @@ -199374,6 +199374,7 @@ "specLocation": "synonyms/put_synonym/SynonymsPutRequest.ts#L23-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -199401,7 +199402,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.put_synonym" @@ -199409,6 +199409,7 @@ "specLocation": "synonyms/put_synonym/SynonymsPutResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199435,7 +199436,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "synonyms.put_synonym_rule" @@ -199470,6 +199470,7 @@ "specLocation": "synonyms/put_synonym_rule/SynonymRulePutRequest.ts#L23-L47" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -199480,7 +199481,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "synonyms.put_synonym_rule" @@ -199578,6 +199578,7 @@ "name": "attributes", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -199585,7 +199586,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -199600,6 +199600,7 @@ "name": "tasks", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -199607,7 +199608,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -199622,13 +199622,13 @@ "specLocation": "tasks/_types/TaskListResponseBase.ts#L49-L57" }, { + "kind": "interface", "inherits": { "type": { "name": "TaskInfo", "namespace": "tasks._types" } }, - "kind": "interface", "name": { "name": "ParentTaskInfo", "namespace": "tasks._types" @@ -199706,6 +199706,7 @@ "name": "headers", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -199713,7 +199714,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -199761,6 +199761,7 @@ "name": "running_time_in_nanos", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -199770,7 +199771,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -199781,6 +199781,7 @@ "name": "start_time_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -199790,7 +199791,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -199831,17 +199831,18 @@ "specLocation": "tasks/_types/TaskInfo.ts#L32-L47" }, { + "kind": "type_alias", "codegenNames": [ "flat", "grouped" ], - "kind": "type_alias", "name": { "name": "TaskInfos", "namespace": "tasks._types" }, "specLocation": "tasks/_types/TaskListResponseBase.ts#L40-L43", "type": { + "kind": "union_of", "items": [ { "kind": "array_of", @@ -199854,6 +199855,7 @@ } }, { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -199861,7 +199863,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -199871,8 +199872,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -199915,6 +199915,7 @@ "name": "nodes", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -199922,7 +199923,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -199949,6 +199949,7 @@ "specLocation": "tasks/_types/TaskListResponseBase.ts#L26-L38" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -199962,7 +199963,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "tasks.cancel" @@ -199987,6 +199987,7 @@ "name": "actions", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -200005,8 +200006,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -200052,6 +200052,7 @@ "specLocation": "tasks/cancel/CancelTasksRequest.ts#L23-L51" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -200062,7 +200063,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "tasks.cancel" @@ -200070,6 +200070,7 @@ "specLocation": "tasks/cancel/CancelTasksResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -200083,7 +200084,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "tasks.get" @@ -200133,6 +200133,7 @@ "specLocation": "tasks/get/GetTaskRequest.ts#L24-L52" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -200178,7 +200179,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "tasks.get" @@ -200186,6 +200186,7 @@ "specLocation": "tasks/get/GetTaskResponse.ts#L24-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -200199,7 +200200,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "tasks.list" @@ -200211,6 +200211,7 @@ "name": "actions", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -200229,8 +200230,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -200328,6 +200328,7 @@ "specLocation": "tasks/list/ListTasksRequest.ts#L25-L72" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -200338,7 +200339,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "tasks.list" @@ -200458,9 +200458,10 @@ "specLocation": "text_structure/find_structure/types.ts#L23-L33" }, { + "kind": "request", "body": { - "codegenName": "text_files", "kind": "value", + "codegenName": "text_files", "value": { "kind": "array_of", "value": { @@ -200479,7 +200480,6 @@ "namespace": "text_structure.find_structure.Request" } ], - "kind": "request", "name": { "name": "Request", "namespace": "text_structure.find_structure" @@ -200674,6 +200674,7 @@ "specLocation": "text_structure/find_structure/FindStructureRequest.ts#L24-L75" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -200725,6 +200726,7 @@ "name": "field_stats", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -200732,7 +200734,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -200944,7 +200945,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "text_structure.find_structure" @@ -201044,6 +201044,7 @@ "name": "fields", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -201051,7 +201052,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "array_of", @@ -201069,6 +201069,7 @@ "specLocation": "text_structure/test_grok_pattern/types.ts#L29-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -201111,7 +201112,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "text_structure.test_grok_pattern" @@ -201134,6 +201134,7 @@ "specLocation": "text_structure/test_grok_pattern/TestGrokPatternRequest.ts#L22-L43" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -201153,7 +201154,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "text_structure.test_grok_pattern" @@ -201246,6 +201246,7 @@ "name": "aggregations", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -201253,7 +201254,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -201269,6 +201269,7 @@ "name": "group_by", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -201276,7 +201277,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -201407,8 +201407,8 @@ } }, { - "description": "The source of the data for the transform.", "kind": "interface", + "description": "The source of the data for the transform.", "name": { "name": "Settings", "namespace": "transform._types" @@ -201613,6 +201613,7 @@ "specLocation": "transform/_types/Transform.ts#L177-L189" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -201626,7 +201627,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.delete_transform" @@ -201689,6 +201689,7 @@ "specLocation": "transform/delete_transform/DeleteTransformRequest.ts#L24-L58" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -201699,7 +201700,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.delete_transform" @@ -201707,6 +201707,7 @@ "specLocation": "transform/delete_transform/DeleteTransformResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -201720,7 +201721,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.get_transform" @@ -201796,6 +201796,7 @@ "specLocation": "transform/get_transform/GetTransformRequest.ts#L24-L73" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -201826,7 +201827,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.get_transform" @@ -201857,6 +201857,7 @@ "name": "create_time", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -201866,7 +201867,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -202059,6 +202059,7 @@ "name": "timestamp_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202068,7 +202069,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -202090,6 +202090,7 @@ "name": "time_upper_bound_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202099,7 +202100,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -202186,6 +202186,7 @@ "specLocation": "transform/get_transform_stats/types.ts#L85-L92" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -202199,7 +202200,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.get_transform_stats" @@ -202274,6 +202274,7 @@ "specLocation": "transform/get_transform_stats/GetTransformStatsRequest.ts#L25-L69" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -202304,7 +202305,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.get_transform_stats" @@ -202322,6 +202322,7 @@ "name": "delete_time_in_ms", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202331,7 +202332,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -202375,6 +202375,7 @@ "name": "exponential_avg_checkpoint_duration_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202384,7 +202385,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -202428,6 +202428,7 @@ "name": "index_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202437,7 +202438,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -202470,6 +202470,7 @@ "name": "processing_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202479,7 +202480,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -202512,6 +202512,7 @@ "name": "search_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -202521,7 +202522,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -202730,6 +202730,7 @@ "specLocation": "transform/get_transform_stats/types.ts#L44-L46" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -202854,7 +202855,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.preview_transform" @@ -202891,6 +202891,7 @@ "specLocation": "transform/preview_transform/PreviewTransformRequest.ts#L33-L108" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -202927,7 +202928,6 @@ "namespace": "transform.preview_transform.Response" } ], - "kind": "response", "name": { "name": "Response", "namespace": "transform.preview_transform" @@ -202935,6 +202935,7 @@ "specLocation": "transform/preview_transform/PreviewTransformResponse.ts#L22-L27" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203071,7 +203072,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.put_transform" @@ -203121,6 +203121,7 @@ "specLocation": "transform/put_transform/PutTransformRequest.ts#L33-L123" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -203131,7 +203132,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.put_transform" @@ -203139,6 +203139,7 @@ "specLocation": "transform/put_transform/PutTransformResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203152,7 +203153,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.reset_transform" @@ -203189,6 +203189,7 @@ "specLocation": "transform/reset_transform/ResetTransformRequest.ts#L23-L49" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -203199,7 +203200,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.reset_transform" @@ -203207,6 +203207,7 @@ "specLocation": "transform/reset_transform/ResetTransformResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203220,7 +203221,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.schedule_now_transform" @@ -203257,6 +203257,7 @@ "specLocation": "transform/schedule_now_transform/ScheduleNowTransformRequest.ts#L23-L50" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -203267,7 +203268,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.schedule_now_transform" @@ -203275,6 +203275,7 @@ "specLocation": "transform/schedule_now_transform/ScheduleNowTransformResponse.ts#L21-L23" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203288,7 +203289,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.start_transform" @@ -203337,6 +203337,7 @@ "specLocation": "transform/start_transform/StartTransformRequest.ts#L24-L66" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -203347,7 +203348,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.start_transform" @@ -203355,6 +203355,7 @@ "specLocation": "transform/start_transform/StartTransformResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203368,7 +203369,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.stop_transform" @@ -203457,6 +203457,7 @@ "specLocation": "transform/stop_transform/StopTransformRequest.ts#L24-L77" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -203467,7 +203468,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.stop_transform" @@ -203475,6 +203475,7 @@ "specLocation": "transform/stop_transform/StopTransformResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203571,6 +203572,7 @@ "name": "retention_policy", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -203586,8 +203588,7 @@ "namespace": "_builtins" } } - ], - "kind": "union_of" + ] } } ] @@ -203599,7 +203600,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.update_transform" @@ -203648,6 +203648,7 @@ "specLocation": "transform/update_transform/UpdateTransformRequest.ts#L31-L106" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -203807,7 +203808,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.update_transform" @@ -203815,6 +203815,7 @@ "specLocation": "transform/update_transform/UpdateTransformResponse.ts#L33-L51" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -203828,7 +203829,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "transform.upgrade_transforms" @@ -203865,6 +203865,7 @@ "specLocation": "transform/upgrade_transforms/UpgradeTransformsRequest.ts#L23-L49" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -203906,7 +203907,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "transform.upgrade_transforms" @@ -204041,6 +204041,7 @@ "name": "throttle_period_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -204050,7 +204051,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -204285,6 +204285,7 @@ }, "specLocation": "watcher/_types/Action.ts#L62-L62", "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204292,7 +204293,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -204388,6 +204388,7 @@ "specLocation": "watcher/_types/Conditions.ts#L25-L25" }, { + "kind": "interface", "attachedBehaviors": [ "AdditionalProperty" ], @@ -204419,7 +204420,6 @@ } } ], - "kind": "interface", "name": { "name": "ArrayCompareCondition", "namespace": "watcher._types" @@ -204484,6 +204484,7 @@ "type": { "kind": "array_of", "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204491,7 +204492,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -204528,6 +204528,7 @@ "name": "array_compare", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204535,7 +204536,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -204550,6 +204550,7 @@ "name": "compare", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204557,9 +204558,9 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": true, "value": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204567,7 +204568,6 @@ "namespace": "watcher._types" } }, - "kind": "dictionary_of", "singleKey": true, "value": { "kind": "instance_of", @@ -204677,9 +204677,9 @@ "specLocation": "watcher/_types/Input.ts#L39-L42" }, { + "kind": "type_alias", "docId": "cron-expressions", "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/api-conventions.html#api-cron-expressions", - "kind": "type_alias", "name": { "name": "CronExpression", "namespace": "watcher._types" @@ -204918,6 +204918,7 @@ "name": "attachments", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -204925,7 +204926,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -204940,13 +204940,13 @@ "specLocation": "watcher/_types/Actions.ts#L238-L250" }, { + "kind": "interface", "inherits": { "type": { "name": "Email", "namespace": "watcher._types" } }, - "kind": "interface", "name": { "name": "EmailAction", "namespace": "watcher._types" @@ -205170,6 +205170,7 @@ "name": "execution_duration", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -205179,7 +205180,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -205396,6 +205396,7 @@ "name": "payload", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -205403,7 +205404,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -205849,6 +205849,7 @@ "name": "headers", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -205856,7 +205857,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -205893,6 +205893,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -205900,7 +205901,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -205981,13 +205981,13 @@ "specLocation": "watcher/_types/Input.ts#L72-L86" }, { + "kind": "interface", "inherits": { "type": { "name": "HttpInputRequestDefinition", "namespace": "watcher._types" } }, - "kind": "interface", "name": { "name": "HttpInputRequestResult", "namespace": "watcher._types" @@ -206246,6 +206246,7 @@ "name": "simple", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -206253,7 +206254,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -206405,13 +206405,13 @@ "specLocation": "watcher/_types/Conditions.ts#L72-L72" }, { + "kind": "interface", "inherits": { "type": { "name": "PagerDutyEvent", "namespace": "watcher._types" } }, - "kind": "interface", "name": { "name": "PagerDutyAction", "namespace": "watcher._types" @@ -206921,6 +206921,7 @@ "name": "monthly", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -206939,14 +206940,14 @@ } } } - ], - "kind": "union_of" + ] } }, { "name": "weekly", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -206965,14 +206966,14 @@ } } } - ], - "kind": "union_of" + ] } }, { "name": "yearly", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -206991,8 +206992,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -207002,18 +207002,19 @@ } }, { + "kind": "type_alias", "codegenNames": [ "text", "hour_minute" ], "description": "A time of day, expressed either as `hh:mm`, `noon`, `midnight`, or an hour/minutes structure.", - "kind": "type_alias", "name": { "name": "ScheduleTimeOfDay", "namespace": "watcher._types" }, "specLocation": "watcher/_types/Schedule.ts#L98-L103", "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -207029,8 +207030,7 @@ "namespace": "watcher._types" } } - ], - "kind": "union_of" + ] } }, { @@ -207088,6 +207088,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -207095,7 +207096,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -207308,6 +207308,7 @@ "name": "params", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -207315,7 +207316,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -207595,6 +207595,7 @@ "name": "ts", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -207604,7 +207605,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -208065,6 +208065,7 @@ "name": "actions", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -208072,7 +208073,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -208142,6 +208142,7 @@ "name": "throttle_period_in_millis", "required": false, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -208151,7 +208152,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -208260,13 +208260,13 @@ "specLocation": "watcher/_types/Watch.ts#L49-L56" }, { + "kind": "interface", "inherits": { "type": { "name": "HttpInputRequestDefinition", "namespace": "watcher._types" } }, - "kind": "interface", "name": { "name": "WebhookAction", "namespace": "watcher._types" @@ -208307,6 +208307,7 @@ "specLocation": "watcher/_types/Actions.ts#L295-L298" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208320,7 +208321,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.ack_watch" @@ -208355,6 +208355,7 @@ "specLocation": "watcher/ack_watch/WatcherAckWatchRequest.ts#L23-L32" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -208371,7 +208372,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.ack_watch" @@ -208379,6 +208379,7 @@ "specLocation": "watcher/ack_watch/WatcherAckWatchResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208392,7 +208393,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.activate_watch" @@ -208415,6 +208415,7 @@ "specLocation": "watcher/activate_watch/WatcherActivateWatchRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -208431,7 +208432,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.activate_watch" @@ -208439,6 +208439,7 @@ "specLocation": "watcher/activate_watch/WatcherActivateWatchResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208452,7 +208453,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.deactivate_watch" @@ -208475,6 +208475,7 @@ "specLocation": "watcher/deactivate_watch/DeactivateWatchRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -208491,7 +208492,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.deactivate_watch" @@ -208499,6 +208499,7 @@ "specLocation": "watcher/deactivate_watch/DeactivateWatchResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208512,7 +208513,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.delete_watch" @@ -208535,6 +208535,7 @@ "specLocation": "watcher/delete_watch/DeleteWatchRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -208573,7 +208574,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.delete_watch" @@ -208581,6 +208581,7 @@ "specLocation": "watcher/delete_watch/DeleteWatchResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208592,6 +208593,7 @@ "name": "action_modes", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -208599,7 +208601,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -208615,6 +208616,7 @@ "name": "alternative_input", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -208622,7 +208624,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "user_defined_value" @@ -208700,7 +208701,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.execute_watch" @@ -208737,6 +208737,7 @@ "specLocation": "watcher/execute_watch/WatcherExecuteWatchRequest.ts#L28-L79" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -208764,7 +208765,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.execute_watch" @@ -208906,6 +208906,7 @@ "specLocation": "watcher/execute_watch/types.ts#L27-L39" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -208919,7 +208920,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.get_watch" @@ -208942,6 +208942,7 @@ "specLocation": "watcher/get_watch/GetWatchRequest.ts#L23-L31" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -209024,7 +209025,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.get_watch" @@ -209032,6 +209032,7 @@ "specLocation": "watcher/get_watch/GetWatchResponse.ts#L24-L34" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -209042,6 +209043,7 @@ "name": "actions", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -209049,7 +209051,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -209135,7 +209136,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.put_watch" @@ -209207,6 +209207,7 @@ "specLocation": "watcher/put_watch/WatcherPutWatchRequest.ts#L30-L53" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -209267,7 +209268,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.put_watch" @@ -209275,6 +209275,7 @@ "specLocation": "watcher/put_watch/WatcherPutWatchResponse.ts#L23-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -209352,7 +209353,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.query_watches" @@ -209362,6 +209362,7 @@ "specLocation": "watcher/query_watches/WatcherQueryWatchesRequest.ts#L25-L48" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -209392,7 +209393,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.query_watches" @@ -209400,6 +209400,7 @@ "specLocation": "watcher/query_watches/WatcherQueryWatchesResponse.ts#L23-L28" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -209413,7 +209414,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.start" @@ -209423,6 +209423,7 @@ "specLocation": "watcher/start/WatcherStartRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -209433,7 +209434,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.start" @@ -209441,6 +209441,7 @@ "specLocation": "watcher/start/WatcherStartResponse.ts#L22-L24" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -209454,7 +209455,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.stats" @@ -209465,6 +209465,7 @@ "name": "metric", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -209483,8 +209484,7 @@ } } } - ], - "kind": "union_of" + ] } } ], @@ -209507,6 +209507,7 @@ "name": "metric", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -209525,14 +209526,14 @@ } } } - ], - "kind": "union_of" + ] } } ], "specLocation": "watcher/stats/WatcherStatsRequest.ts#L23-L45" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -209586,7 +209587,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.stats" @@ -209615,13 +209615,13 @@ "specLocation": "watcher/stats/types.ts#L50-L52" }, { + "kind": "interface", "inherits": { "type": { "name": "WatchRecordQueuedStats", "namespace": "watcher.stats" } }, - "kind": "interface", "name": { "name": "WatchRecordStats", "namespace": "watcher.stats" @@ -209818,6 +209818,7 @@ "specLocation": "watcher/stats/types.ts#L26-L31" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -209831,7 +209832,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "watcher.stop" @@ -209841,6 +209841,7 @@ "specLocation": "watcher/stop/WatcherStopRequest.ts#L22-L26" }, { + "kind": "response", "body": { "kind": "value", "value": { @@ -209851,7 +209852,6 @@ } } }, - "kind": "response", "name": { "name": "Response", "namespace": "watcher.stop" @@ -210279,6 +210279,7 @@ "name": "expiry_date_in_millis", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -210288,7 +210289,6 @@ } } ], - "kind": "instance_of", "type": { "name": "EpochTime", "namespace": "_types" @@ -210375,6 +210375,7 @@ "specLocation": "xpack/info/types.ts#L29-L32" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -210388,7 +210389,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "xpack.info" @@ -210439,6 +210439,7 @@ "specLocation": "xpack/info/XPackInfoRequest.ts#L22-L42" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -210488,7 +210489,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "xpack.info" @@ -210496,13 +210496,13 @@ "specLocation": "xpack/info/XPackInfoResponse.ts#L22-L29" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Analytics", "namespace": "xpack.usage" @@ -210632,13 +210632,13 @@ "specLocation": "xpack/usage/types.ts#L61-L71" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Archive", "namespace": "xpack.usage" @@ -210659,13 +210659,13 @@ "specLocation": "xpack/usage/types.ts#L48-L50" }, { + "kind": "interface", "inherits": { "type": { "name": "FeatureToggle", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Audit", "namespace": "xpack.usage" @@ -210721,13 +210721,13 @@ "specLocation": "xpack/usage/types.ts#L30-L33" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Ccr", "namespace": "xpack.usage" @@ -210791,13 +210791,13 @@ "specLocation": "xpack/usage/types.ts#L35-L38" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "DataStreams", "namespace": "xpack.usage" @@ -210949,13 +210949,13 @@ "specLocation": "xpack/usage/types.ts#L86-L97" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "DataTiers", "namespace": "xpack.usage" @@ -211047,13 +211047,13 @@ "specLocation": "xpack/usage/types.ts#L77-L79" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Eql", "namespace": "xpack.usage" @@ -211074,6 +211074,7 @@ "name": "queries", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -211081,7 +211082,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -211442,13 +211442,13 @@ "specLocation": "xpack/usage/types.ts#L40-L42" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Flattened", "namespace": "xpack.usage" @@ -211469,13 +211469,13 @@ "specLocation": "xpack/usage/types.ts#L356-L358" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "FrozenIndices", "namespace": "xpack.usage" @@ -211496,13 +211496,13 @@ "specLocation": "xpack/usage/types.ts#L360-L362" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "HealthStatistics", "namespace": "xpack.usage" @@ -211664,6 +211664,7 @@ "name": "created_by", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -211671,7 +211672,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -211719,13 +211719,13 @@ "specLocation": "xpack/usage/types.ts#L364-L370" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "MachineLearning", "namespace": "xpack.usage" @@ -211735,6 +211735,7 @@ "name": "datafeeds", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -211742,7 +211743,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -211758,6 +211758,7 @@ "name": "jobs", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -211765,7 +211766,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -211983,6 +211983,7 @@ "name": "ingest_processors", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -211990,7 +211991,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -212406,13 +212406,13 @@ "specLocation": "xpack/usage/types.ts#L172-L175" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Monitoring", "namespace": "xpack.usage" @@ -212433,6 +212433,7 @@ "name": "enabled_exporters", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -212440,7 +212441,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -212509,13 +212509,13 @@ "specLocation": "xpack/usage/types.ts#L259-L264" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Realm", "namespace": "xpack.usage" @@ -212658,6 +212658,7 @@ "specLocation": "xpack/usage/types.ts#L266-L268" }, { + "kind": "request", "attachedBehaviors": [ "CommonQueryParameters" ], @@ -212671,7 +212672,6 @@ "namespace": "_types" } }, - "kind": "request", "name": { "name": "Request", "namespace": "xpack.usage" @@ -212695,6 +212695,7 @@ "specLocation": "xpack/usage/XPackUsageRequest.ts#L23-L38" }, { + "kind": "response", "body": { "kind": "properties", "properties": [ @@ -213025,7 +213026,6 @@ } ] }, - "kind": "response", "name": { "name": "Response", "namespace": "xpack.usage" @@ -213065,13 +213065,13 @@ "specLocation": "xpack/usage/types.ts#L270-L273" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "RuntimeFieldTypes", "namespace": "xpack.usage" @@ -213262,13 +213262,13 @@ "specLocation": "xpack/usage/types.ts#L279-L294" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "SearchableSnapshots", "namespace": "xpack.usage" @@ -213311,13 +213311,13 @@ "specLocation": "xpack/usage/types.ts#L428-L432" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Security", "namespace": "xpack.usage" @@ -213382,6 +213382,7 @@ "name": "realms", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213389,7 +213390,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -213404,6 +213404,7 @@ "name": "role_mapping", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213411,7 +213412,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -213674,13 +213674,13 @@ "specLocation": "xpack/usage/types.ts#L302-L306" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Slm", "namespace": "xpack.usage" @@ -213712,13 +213712,13 @@ "specLocation": "xpack/usage/types.ts#L449-L452" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Sql", "namespace": "xpack.usage" @@ -213728,6 +213728,7 @@ "name": "features", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213735,7 +213736,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -213750,6 +213750,7 @@ "name": "queries", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213757,7 +213758,6 @@ "namespace": "_builtins" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -213804,13 +213804,13 @@ "specLocation": "xpack/usage/types.ts#L391-L394" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Vector", "namespace": "xpack.usage" @@ -213853,13 +213853,13 @@ "specLocation": "xpack/usage/types.ts#L454-L458" }, { + "kind": "interface", "inherits": { "type": { "name": "Base", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "Watcher", "namespace": "xpack.usage" @@ -213923,6 +213923,7 @@ "name": "total_time_in_ms", "required": true, "type": { + "kind": "instance_of", "generics": [ { "kind": "instance_of", @@ -213932,7 +213933,6 @@ } } ], - "kind": "instance_of", "type": { "name": "DurationValue", "namespace": "_types" @@ -213953,6 +213953,7 @@ "name": "actions", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213960,7 +213961,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -213985,6 +213985,7 @@ "name": "input", "required": true, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -213992,7 +213993,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -214007,6 +214007,7 @@ "name": "condition", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -214014,7 +214015,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -214029,6 +214029,7 @@ "name": "action", "required": false, "type": { + "kind": "dictionary_of", "key": { "kind": "instance_of", "type": { @@ -214036,7 +214037,6 @@ "namespace": "_types" } }, - "kind": "dictionary_of", "singleKey": false, "value": { "kind": "instance_of", @@ -214094,13 +214094,13 @@ "specLocation": "xpack/usage/types.ts#L407-L410" }, { + "kind": "interface", "inherits": { "type": { "name": "Counter", "namespace": "xpack.usage" } }, - "kind": "interface", "name": { "name": "WatcherWatchTriggerSchedule", "namespace": "xpack.usage" @@ -214132,6 +214132,7 @@ "specLocation": "xpack/usage/types.ts#L466-L469" }, { + "kind": "interface", "description": "In some places in the specification an object consists of the union of a set of known properties\nand a set of runtime injected properties. Meaning that object should theoretically extend Dictionary but expose\na set of known keys and possibly. The object might already be part of an object graph and have a parent class.\nThis puts it into a bind that needs a client specific solution.\nWe therefore document the requirement to behave like a dictionary for unknown properties with this interface.", "generics": [ { @@ -214143,7 +214144,6 @@ "namespace": "_spec_utils.AdditionalProperties" } ], - "kind": "interface", "name": { "name": "AdditionalProperties", "namespace": "_spec_utils" @@ -214152,6 +214152,7 @@ "specLocation": "_spec_utils/behaviors.ts#L29-L37" }, { + "kind": "interface", "description": "In some places in the specification an object consists of a static set of properties and a single additional property\nwith an arbitrary name but a statically defined type. This is typically used for configurations associated\nto a single field. Meaning that object should theoretically extend SingleKeyDictionary but expose\na set of known keys. And possibly the object might already be part of an object graph and have a parent class.\nThis puts it into a bind that needs a client specific solution.\nWe therefore document the requirement to accept a single unknown property with this interface.", "generics": [ { @@ -214163,7 +214164,6 @@ "namespace": "_spec_utils.AdditionalProperty" } ], - "kind": "interface", "name": { "name": "AdditionalProperty", "namespace": "_spec_utils" @@ -214172,8 +214172,8 @@ "specLocation": "_spec_utils/behaviors.ts#L39-L48" }, { - "description": "Implements a set of common query parameters all API's support.\nSince these can break the request structure these are listed explicitly as a behavior.\nIts up to individual clients to define support although `error_trace` and `pretty` are\nrecommended as a minimum.", "kind": "interface", + "description": "Implements a set of common query parameters all API's support.\nSince these can break the request structure these are listed explicitly as a behavior.\nIts up to individual clients to define support although `error_trace` and `pretty` are\nrecommended as a minimum.", "name": { "name": "CommonQueryParameters", "namespace": "_spec_utils" @@ -214197,6 +214197,7 @@ "name": "filter_path", "required": false, "type": { + "kind": "union_of", "items": [ { "kind": "instance_of", @@ -214215,8 +214216,7 @@ } } } - ], - "kind": "union_of" + ] } }, { @@ -214249,8 +214249,8 @@ "specLocation": "_spec_utils/behaviors.ts#L50-L84" }, { - "description": "Implements a set of common query parameters all Cat API's support.\nSince these can break the request structure these are listed explicitly as a behavior.", "kind": "interface", + "description": "Implements a set of common query parameters all Cat API's support.\nSince these can break the request structure these are listed explicitly as a behavior.", "name": { "name": "CommonCatQueryParameters", "namespace": "_spec_utils" @@ -214349,6 +214349,7 @@ "specLocation": "_spec_utils/behaviors.ts#L86-L132" }, { + "kind": "interface", "description": "A class that implements `OverloadOf` should have the exact same properties with the same types.\nIt can change if a property is required or not. There is no need to port the descriptions\nand js doc tags, the compiler will do that for you.", "generics": [ { @@ -214356,7 +214357,6 @@ "namespace": "_spec_utils.OverloadOf" } ], - "kind": "interface", "name": { "name": "OverloadOf", "namespace": "_spec_utils"