diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java index f17e056f6b..62d0b904dc 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchAsyncClient.java @@ -3102,15 +3102,21 @@ public CompletableFuture healthReport() { * "id": "elkbee" * } * } - * - * In this example, the operation will succeed since the supplied version of 2 is higher than the current document version of 1. - * If the document was already updated and its version was set to 2 or higher, the indexing command will fail and result in a conflict (409 HTTP status code). - * - * A nice side effect is that there is no need to maintain strict ordering of async indexing operations run as a result of changes to a source database, as long as version numbers from the source database are used. - * Even the simple case of updating the Elasticsearch index using data from a database is simplified if external versioning is used, as only the latest version will be used if the index operations arrive out of order. * * - * + *

+ * In this example, the operation will succeed since the supplied version of 2 + * is higher than the current document version of 1. If the document was already + * updated and its version was set to 2 or higher, the indexing command will + * fail and result in a conflict (409 HTTP status code). + *

+ * A nice side effect is that there is no need to maintain strict ordering of + * async indexing operations run as a result of changes to a source database, as + * long as version numbers from the source database are used. Even the simple + * case of updating the Elasticsearch index using data from a database is + * simplified if external versioning is used, as only the latest version will be + * used if the index operations arrive out of order. + * * @see Documentation * on elastic.co @@ -3305,15 +3311,21 @@ public CompletableFuture index(IndexRequest * - * + *

+ * In this example, the operation will succeed since the supplied version of 2 + * is higher than the current document version of 1. If the document was already + * updated and its version was set to 2 or higher, the indexing command will + * fail and result in a conflict (409 HTTP status code). + *

+ * A nice side effect is that there is no need to maintain strict ordering of + * async indexing operations run as a result of changes to a source database, as + * long as version numbers from the source database are used. Even the simple + * case of updating the Elasticsearch index using data from a database is + * simplified if external versioning is used, as only the latest version will be + * used if the index operations arrive out of order. + * * @param fn * a function that initializes a builder to create the * {@link IndexRequest} diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java index 1a55d296f0..bba77a65de 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ElasticsearchClient.java @@ -3121,15 +3121,21 @@ public HealthReportResponse healthReport() throws IOException, ElasticsearchExce * "id": "elkbee" * } * } - * - * In this example, the operation will succeed since the supplied version of 2 is higher than the current document version of 1. - * If the document was already updated and its version was set to 2 or higher, the indexing command will fail and result in a conflict (409 HTTP status code). - * - * A nice side effect is that there is no need to maintain strict ordering of async indexing operations run as a result of changes to a source database, as long as version numbers from the source database are used. - * Even the simple case of updating the Elasticsearch index using data from a database is simplified if external versioning is used, as only the latest version will be used if the index operations arrive out of order. * * - * + *

+ * In this example, the operation will succeed since the supplied version of 2 + * is higher than the current document version of 1. If the document was already + * updated and its version was set to 2 or higher, the indexing command will + * fail and result in a conflict (409 HTTP status code). + *

+ * A nice side effect is that there is no need to maintain strict ordering of + * async indexing operations run as a result of changes to a source database, as + * long as version numbers from the source database are used. Even the simple + * case of updating the Elasticsearch index using data from a database is + * simplified if external versioning is used, as only the latest version will be + * used if the index operations arrive out of order. + * * @see Documentation * on elastic.co @@ -3324,15 +3330,21 @@ public IndexResponse index(IndexRequest request) throws I * "id": "elkbee" * } * } - * - * In this example, the operation will succeed since the supplied version of 2 is higher than the current document version of 1. - * If the document was already updated and its version was set to 2 or higher, the indexing command will fail and result in a conflict (409 HTTP status code). - * - * A nice side effect is that there is no need to maintain strict ordering of async indexing operations run as a result of changes to a source database, as long as version numbers from the source database are used. - * Even the simple case of updating the Elasticsearch index using data from a database is simplified if external versioning is used, as only the latest version will be used if the index operations arrive out of order. * * - * + *

+ * In this example, the operation will succeed since the supplied version of 2 + * is higher than the current document version of 1. If the document was already + * updated and its version was set to 2 or higher, the indexing command will + * fail and result in a conflict (409 HTTP status code). + *

+ * A nice side effect is that there is no need to maintain strict ordering of + * async indexing operations run as a result of changes to a source database, as + * long as version numbers from the source database are used. Even the simple + * case of updating the Elasticsearch index using data from a database is + * simplified if external versioning is used, as only the latest version will be + * used if the index operations arrive out of order. + * * @param fn * a function that initializes a builder to create the * {@link IndexRequest} diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/SubmitRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/SubmitRequest.java index 3352b83e23..0d98a1ebfe 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/SubmitRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/async_search/SubmitRequest.java @@ -366,8 +366,7 @@ public final Boolean allowPartialSearchResults() { } /** - * Specify whether wildcard and prefix queries should be analyzed (default: - * false) + * Specify whether wildcard and prefix queries should be analyzed *

* API name: {@code analyze_wildcard} */ @@ -450,7 +449,7 @@ public final List docvalueFields() { /** * Whether to expand wildcard expression to concrete indices that are open, - * closed or both. + * closed or both *

* API name: {@code expand_wildcards} */ @@ -634,8 +633,7 @@ public final Query postFilter() { } /** - * Specify the node or shard the operation should be performed on (default: - * random) + * Specify the node or shard the operation should be performed on *

* API name: {@code preference} */ @@ -1399,8 +1397,7 @@ public final Builder allowPartialSearchResults(@Nullable Boolean value) { } /** - * Specify whether wildcard and prefix queries should be analyzed (default: - * false) + * Specify whether wildcard and prefix queries should be analyzed *

* API name: {@code analyze_wildcard} */ @@ -1518,7 +1515,7 @@ public final Builder docvalueFields(Function * API name: {@code expand_wildcards} *

@@ -1531,7 +1528,7 @@ public final Builder expandWildcards(List list) { /** * Whether to expand wildcard expression to concrete indices that are open, - * closed or both. + * closed or both *

* API name: {@code expand_wildcards} *

@@ -1861,8 +1858,7 @@ public final Builder postFilter(QueryVariant value) { } /** - * Specify the node or shard the operation should be performed on (default: - * random) + * Specify the node or shard the operation should be performed on *

* API name: {@code preference} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/DeleteAutoscalingPolicyRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/DeleteAutoscalingPolicyRequest.java index a86727e9fc..5c619bda82 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/DeleteAutoscalingPolicyRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/DeleteAutoscalingPolicyRequest.java @@ -103,7 +103,7 @@ public final Time masterTimeout() { } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ @@ -161,7 +161,7 @@ public final Builder masterTimeout(Function> f } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/GetAutoscalingPolicyRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/GetAutoscalingPolicyRequest.java index 4faccea7f0..f3f7cac7be 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/GetAutoscalingPolicyRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/GetAutoscalingPolicyRequest.java @@ -98,7 +98,7 @@ public final Time masterTimeout() { } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ @@ -142,7 +142,7 @@ public final Builder masterTimeout(Function> f } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/PutAutoscalingPolicyRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/PutAutoscalingPolicyRequest.java index 66e553363a..8633a26f6c 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/PutAutoscalingPolicyRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/autoscaling/PutAutoscalingPolicyRequest.java @@ -108,7 +108,7 @@ public final Time masterTimeout() { } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ @@ -183,7 +183,7 @@ public final Builder masterTimeout(Function> f } /** - * Required - the name of the autoscaling policy + * Required - Name of the autoscaling policy *

* API name: {@code name} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ForgetFollowerRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ForgetFollowerRequest.java index d82c981d62..e2b4f1af42 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ForgetFollowerRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ForgetFollowerRequest.java @@ -146,8 +146,8 @@ public final String followerIndexUuid() { } /** - * Required - the name of the leader index for which specified follower - * retention leases should be removed + * Required - Name of the leader index for which specified follower retention + * leases should be removed *

* API name: {@code index} */ @@ -259,8 +259,8 @@ public final Builder followerIndexUuid(@Nullable String value) { } /** - * Required - the name of the leader index for which specified follower - * retention leases should be removed + * Required - Name of the leader index for which specified follower retention + * leases should be removed *

* API name: {@code index} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ResumeFollowRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ResumeFollowRequest.java index 7011f360a5..8ce810e4ea 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ResumeFollowRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/ccr/ResumeFollowRequest.java @@ -131,7 +131,7 @@ public static ResumeFollowRequest of(Function * API name: {@code index} */ @@ -338,7 +338,7 @@ public static class Builder extends RequestBase.AbstractBuilder private Time readPollTimeout; /** - * Required - The name of the follow index to resume following. + * Required - Name of the follow index to resume following *

* API name: {@code index} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/GetComponentTemplateRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/GetComponentTemplateRequest.java index 4c0d2eea24..bcc2c288cd 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/GetComponentTemplateRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/GetComponentTemplateRequest.java @@ -114,7 +114,7 @@ public final Boolean flatSettings() { } /** - * Return all default configurations for the component template (default: false) + * Return all default configurations for the component template *

* API name: {@code include_defaults} */ @@ -208,7 +208,7 @@ public final Builder flatSettings(@Nullable Boolean value) { } /** - * Return all default configurations for the component template (default: false) + * Return all default configurations for the component template *

* API name: {@code include_defaults} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/PutClusterSettingsRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/PutClusterSettingsRequest.java index b733b6714b..95d4a49cd0 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/PutClusterSettingsRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/PutClusterSettingsRequest.java @@ -126,7 +126,7 @@ public static PutClusterSettingsRequest of(Function * API name: {@code flat_settings} */ @@ -136,7 +136,7 @@ public final Boolean flatSettings() { } /** - * Explicit operation timeout for connection to master node + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -155,7 +155,7 @@ public final Map persistent() { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -234,7 +234,7 @@ public static class Builder extends RequestBase.AbstractBuilder private Map transient_; /** - * Return settings in flat format (default: false) + * Return settings in flat format *

* API name: {@code flat_settings} */ @@ -244,7 +244,7 @@ public final Builder flatSettings(@Nullable Boolean value) { } /** - * Explicit operation timeout for connection to master node + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -254,7 +254,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Explicit operation timeout for connection to master node + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -287,7 +287,7 @@ public final Builder persistent(String key, JsonData value) { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -297,7 +297,7 @@ public final Builder timeout(@Nullable Time value) { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/StateRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/StateRequest.java index 76dded42f6..c0fa3ba022 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/StateRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/cluster/StateRequest.java @@ -160,7 +160,7 @@ public final Boolean allowNoIndices() { /** * Whether to expand wildcard expression to concrete indices that are open, - * closed or both. + * closed or both *

* API name: {@code expand_wildcards} */ @@ -169,7 +169,7 @@ public final List expandWildcards() { } /** - * Return settings in flat format (default: false) + * Return settings in flat format *

* API name: {@code flat_settings} */ @@ -201,7 +201,6 @@ public final List index() { /** * Return local information, do not retrieve the state from master node - * (default: false) *

* API name: {@code local} * @@ -225,7 +224,7 @@ public final Time masterTimeout() { } /** - * Limit the information returned to the specified metrics + * Limit the information returned to the specified metrics. *

* API name: {@code metric} */ @@ -305,7 +304,7 @@ public final Builder allowNoIndices(@Nullable Boolean value) { /** * Whether to expand wildcard expression to concrete indices that are open, - * closed or both. + * closed or both *

* API name: {@code expand_wildcards} *

@@ -318,7 +317,7 @@ public final Builder expandWildcards(List list) { /** * Whether to expand wildcard expression to concrete indices that are open, - * closed or both. + * closed or both *

* API name: {@code expand_wildcards} *

@@ -330,7 +329,7 @@ public final Builder expandWildcards(ExpandWildcard value, ExpandWildcard... val } /** - * Return settings in flat format (default: false) + * Return settings in flat format *

* API name: {@code flat_settings} */ @@ -378,7 +377,6 @@ public final Builder index(String value, String... values) { /** * Return local information, do not retrieve the state from master node - * (default: false) *

* API name: {@code local} * @@ -411,7 +409,7 @@ public final Builder masterTimeout(Function> f } /** - * Limit the information returned to the specified metrics + * Limit the information returned to the specified metrics. *

* API name: {@code metric} *

@@ -423,7 +421,7 @@ public final Builder metric(List list) { } /** - * Limit the information returned to the specified metrics + * Limit the information returned to the specified metrics. *

* API name: {@code metric} *

diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/IndexRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/IndexRequest.java index 8ea34d2f18..9c71c97442 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/IndexRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/IndexRequest.java @@ -250,15 +250,21 @@ * "id": "elkbee" * } * } - * - * In this example, the operation will succeed since the supplied version of 2 is higher than the current document version of 1. - * If the document was already updated and its version was set to 2 or higher, the indexing command will fail and result in a conflict (409 HTTP status code). - * - * A nice side effect is that there is no need to maintain strict ordering of async indexing operations run as a result of changes to a source database, as long as version numbers from the source database are used. - * Even the simple case of updating the Elasticsearch index using data from a database is simplified if external versioning is used, as only the latest version will be used if the index operations arrive out of order. * * - * + *

+ * In this example, the operation will succeed since the supplied version of 2 + * is higher than the current document version of 1. If the document was already + * updated and its version was set to 2 or higher, the indexing command will + * fail and result in a conflict (409 HTTP status code). + *

+ * A nice side effect is that there is no need to maintain strict ordering of + * async indexing operations run as a result of changes to a source database, as + * long as version numbers from the source database are used. Even the simple + * case of updating the Elasticsearch index using data from a database is + * simplified if external versioning is used, as only the latest version will be + * used if the index operations arrive out of order. + * * @see API * specification */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/SearchMvtRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/SearchMvtRequest.java index 60ac8f77e1..2bce114caa 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/core/SearchMvtRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/core/SearchMvtRequest.java @@ -538,7 +538,14 @@ public final Integer extent() { } /** - * Required - Field containing geospatial data to return + * Required - A field that contains the geospatial data to return. It must be a + * geo_point or geo_shape field. The field must have + * doc values enabled. It cannot be a nested field. + *

+ * NOTE: Vector tiles do not natively support geometry collections. For + * geometrycollection values in a geo_shape field, the + * API returns a hits layer feature for each element of the collection. This + * behavior may change in a future release. *

* API name: {@code field} */ @@ -594,8 +601,10 @@ public final GridType gridType() { } /** - * Required - Comma-separated list of data streams, indices, or aliases to - * search + * Required - A list of indices, data streams, or aliases to search. It supports + * wildcards (*). To search all data streams and indices, omit this + * parameter or use * or _all. To search a remote + * cluster, use the <cluster>:<target> syntax. *

* API name: {@code index} */ @@ -699,7 +708,7 @@ public final Boolean withLabels() { } /** - * Required - X coordinate for the vector tile to search + * Required - The X coordinate for the vector tile to search. *

* API name: {@code x} */ @@ -708,7 +717,7 @@ public final int x() { } /** - * Required - Y coordinate for the vector tile to search + * Required - The Y coordinate for the vector tile to search. *

* API name: {@code y} */ @@ -717,7 +726,8 @@ public final int y() { } /** - * Required - Zoom level for the vector tile to search + * Required - The zoom level of the vector tile to search. It accepts + * 0 to 29. *

* API name: {@code zoom} */ @@ -1056,7 +1066,14 @@ public final Builder extent(@Nullable Integer value) { } /** - * Required - Field containing geospatial data to return + * Required - A field that contains the geospatial data to return. It must be a + * geo_point or geo_shape field. The field must have + * doc values enabled. It cannot be a nested field. + *

+ * NOTE: Vector tiles do not natively support geometry collections. For + * geometrycollection values in a geo_shape field, the + * API returns a hits layer feature for each element of the collection. This + * behavior may change in a future release. *

* API name: {@code field} */ @@ -1130,8 +1147,10 @@ public final Builder gridType(@Nullable GridType value) { } /** - * Required - Comma-separated list of data streams, indices, or aliases to - * search + * Required - A list of indices, data streams, or aliases to search. It supports + * wildcards (*). To search all data streams and indices, omit this + * parameter or use * or _all. To search a remote + * cluster, use the <cluster>:<target> syntax. *

* API name: {@code index} *

@@ -1143,8 +1162,10 @@ public final Builder index(List list) { } /** - * Required - Comma-separated list of data streams, indices, or aliases to - * search + * Required - A list of indices, data streams, or aliases to search. It supports + * wildcards (*). To search all data streams and indices, omit this + * parameter or use * or _all. To search a remote + * cluster, use the <cluster>:<target> syntax. *

* API name: {@code index} *

@@ -1341,7 +1362,7 @@ public final Builder withLabels(@Nullable Boolean value) { } /** - * Required - X coordinate for the vector tile to search + * Required - The X coordinate for the vector tile to search. *

* API name: {@code x} */ @@ -1351,7 +1372,7 @@ public final Builder x(int value) { } /** - * Required - Y coordinate for the vector tile to search + * Required - The Y coordinate for the vector tile to search. *

* API name: {@code y} */ @@ -1361,7 +1382,8 @@ public final Builder y(int value) { } /** - * Required - Zoom level for the vector tile to search + * Required - The zoom level of the vector tile to search. It accepts + * 0 to 29. *

* API name: {@code zoom} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/DeleteDanglingIndexRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/DeleteDanglingIndexRequest.java index 5cd8dc05b1..adbac2a99e 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/DeleteDanglingIndexRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/DeleteDanglingIndexRequest.java @@ -119,7 +119,7 @@ public final String indexUuid() { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -129,7 +129,7 @@ public final Time masterTimeout() { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -181,7 +181,7 @@ public final Builder indexUuid(String value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -191,7 +191,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -200,7 +200,7 @@ public final Builder masterTimeout(Function> f } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -210,7 +210,7 @@ public final Builder timeout(@Nullable Time value) { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/ImportDanglingIndexRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/ImportDanglingIndexRequest.java index 8866cd94f0..9e0bdb3dea 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/ImportDanglingIndexRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/dangling_indices/ImportDanglingIndexRequest.java @@ -122,7 +122,7 @@ public final String indexUuid() { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -132,7 +132,7 @@ public final Time masterTimeout() { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -187,7 +187,7 @@ public final Builder indexUuid(String value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -197,7 +197,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -206,7 +206,7 @@ public final Builder masterTimeout(Function> f } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -216,7 +216,7 @@ public final Builder timeout(@Nullable Time value) { } /** - * Explicit operation timeout + * The period to wait for a response. *

* API name: {@code timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html b/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html index 20be1e5caa..bd5d6746eb 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/doc-files/api-spec.html @@ -11,51 +11,51 @@ '_global.bulk.OperationBase': '_global/bulk/types.ts#L100-L117', '_global.bulk.OperationContainer': '_global/bulk/types.ts#L158-L180', '_global.bulk.OperationType': '_global/bulk/types.ts#L93-L98', -'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L32-L253', +'_global.bulk.Request': '_global/bulk/BulkRequest.ts#L33-L256', '_global.bulk.Response': '_global/bulk/BulkResponse.ts#L24-L45', '_global.bulk.ResponseItem': '_global/bulk/types.ts#L37-L84', '_global.bulk.UpdateAction': '_global/bulk/types.ts#L182-L217', '_global.bulk.UpdateOperation': '_global/bulk/types.ts#L146-L156', '_global.bulk.WriteOperation': '_global/bulk/types.ts#L119-L138', -'_global.clear_scroll.Request': '_global/clear_scroll/ClearScrollRequest.ts#L23-L62', +'_global.clear_scroll.Request': '_global/clear_scroll/ClearScrollRequest.ts#L23-L64', '_global.clear_scroll.Response': '_global/clear_scroll/ClearScrollResponse.ts#L22-L43', -'_global.close_point_in_time.Request': '_global/close_point_in_time/ClosePointInTimeRequest.ts#L23-L49', +'_global.close_point_in_time.Request': '_global/close_point_in_time/ClosePointInTimeRequest.ts#L23-L51', '_global.close_point_in_time.Response': '_global/close_point_in_time/ClosePointInTimeResponse.ts#L22-L42', -'_global.count.Request': '_global/count/CountRequest.ts#L31-L172', +'_global.count.Request': '_global/count/CountRequest.ts#L32-L175', '_global.count.Response': '_global/count/CountResponse.ts#L23-L25', -'_global.create.Request': '_global/create/CreateRequest.ts#L32-L199', +'_global.create.Request': '_global/create/CreateRequest.ts#L33-L202', '_global.create.Response': '_global/create/CreateResponse.ts#L22-L25', -'_global.delete.Request': '_global/delete/DeleteRequest.ts#L34-L146', -'_global.delete.Response': '_global/delete/DeleteResponse.ts#L22-L35', -'_global.delete_by_query.Request': '_global/delete_by_query/DeleteByQueryRequest.ts#L37-L320', +'_global.delete.Request': '_global/delete/DeleteRequest.ts#L35-L148', +'_global.delete.Response': '_global/delete/DeleteResponse.ts#L22-L36', +'_global.delete_by_query.Request': '_global/delete_by_query/DeleteByQueryRequest.ts#L38-L323', '_global.delete_by_query.Response': '_global/delete_by_query/DeleteByQueryResponse.ts#L26-L88', -'_global.delete_by_query_rethrottle.Request': '_global/delete_by_query_rethrottle/DeleteByQueryRethrottleRequest.ts#L24-L55', +'_global.delete_by_query_rethrottle.Request': '_global/delete_by_query_rethrottle/DeleteByQueryRethrottleRequest.ts#L24-L56', '_global.delete_by_query_rethrottle.Response': '_global/delete_by_query_rethrottle/DeleteByQueryRethrottleResponse.ts#L22-L25', -'_global.delete_script.Request': '_global/delete_script/DeleteScriptRequest.ts#L24-L64', +'_global.delete_script.Request': '_global/delete_script/DeleteScriptRequest.ts#L24-L65', '_global.delete_script.Response': '_global/delete_script/DeleteScriptResponse.ts#L22-L25', -'_global.exists.Request': '_global/exists/DocumentExistsRequest.ts#L31-L136', -'_global.exists_source.Request': '_global/exists_source/SourceExistsRequest.ts#L31-L113', +'_global.exists.Request': '_global/exists/DocumentExistsRequest.ts#L32-L138', +'_global.exists_source.Request': '_global/exists_source/SourceExistsRequest.ts#L32-L115', '_global.explain.Explanation': '_global/explain/types.ts#L22-L26', '_global.explain.ExplanationDetail': '_global/explain/types.ts#L28-L32', -'_global.explain.Request': '_global/explain/ExplainRequest.ts#L26-L126', +'_global.explain.Request': '_global/explain/ExplainRequest.ts#L26-L128', '_global.explain.Response': '_global/explain/ExplainResponse.ts#L23-L31', '_global.field_caps.FieldCapability': '_global/field_caps/types.ts#L23-L81', -'_global.field_caps.Request': '_global/field_caps/FieldCapabilitiesRequest.ts#L30-L147', +'_global.field_caps.Request': '_global/field_caps/FieldCapabilitiesRequest.ts#L31-L150', '_global.field_caps.Response': '_global/field_caps/FieldCapabilitiesResponse.ts#L24-L38', '_global.get.GetResult': '_global/get/types.ts#L25-L67', -'_global.get.Request': '_global/get/GetRequest.ts#L31-L188', -'_global.get.Response': '_global/get/GetResponse.ts#L23-L35', -'_global.get_script.Request': '_global/get_script/GetScriptRequest.ts#L24-L57', +'_global.get.Request': '_global/get/GetRequest.ts#L32-L190', +'_global.get.Response': '_global/get/GetResponse.ts#L23-L36', +'_global.get_script.Request': '_global/get_script/GetScriptRequest.ts#L24-L58', '_global.get_script.Response': '_global/get_script/GetScriptResponse.ts#L23-L29', '_global.get_script_context.Context': '_global/get_script_context/types.ts#L22-L25', '_global.get_script_context.ContextMethod': '_global/get_script_context/types.ts#L27-L31', '_global.get_script_context.ContextMethodParam': '_global/get_script_context/types.ts#L33-L36', -'_global.get_script_context.Request': '_global/get_script_context/GetScriptContextRequest.ts#L22-L39', +'_global.get_script_context.Request': '_global/get_script_context/GetScriptContextRequest.ts#L23-L41', '_global.get_script_context.Response': '_global/get_script_context/GetScriptContextResponse.ts#L22-L26', '_global.get_script_languages.LanguageContext': '_global/get_script_languages/types.ts#L22-L25', -'_global.get_script_languages.Request': '_global/get_script_languages/GetScriptLanguagesRequest.ts#L22-L39', +'_global.get_script_languages.Request': '_global/get_script_languages/GetScriptLanguagesRequest.ts#L23-L41', '_global.get_script_languages.Response': '_global/get_script_languages/GetScriptLanguagesResponse.ts#L22-L27', -'_global.get_source.Request': '_global/get_source/SourceRequest.ts#L31-L112', +'_global.get_source.Request': '_global/get_source/SourceRequest.ts#L32-L114', '_global.get_source.Response': '_global/get_source/SourceResponse.ts#L20-L23', '_global.health_report.BaseIndicator': '_global/health_report/types.ts#L45-L50', '_global.health_report.DataStreamLifecycleDetails': '_global/health_report/types.ts#L154-L158', @@ -79,7 +79,7 @@ '_global.health_report.MasterIsStableIndicatorExceptionFetchingHistory': '_global/health_report/types.ts#L97-L100', '_global.health_report.RepositoryIntegrityIndicator': '_global/health_report/types.ts#L138-L142', '_global.health_report.RepositoryIntegrityIndicatorDetails': '_global/health_report/types.ts#L143-L147', -'_global.health_report.Request': '_global/health_report/Request.ts#L24-L82', +'_global.health_report.Request': '_global/health_report/Request.ts#L25-L84', '_global.health_report.Response': '_global/health_report/Response.ts#L22-L28', '_global.health_report.ShardsAvailabilityIndicator': '_global/health_report/types.ts#L107-L111', '_global.health_report.ShardsAvailabilityIndicatorDetails': '_global/health_report/types.ts#L112-L123', @@ -90,32 +90,32 @@ '_global.health_report.SlmIndicatorDetails': '_global/health_report/types.ts#L181-L185', '_global.health_report.SlmIndicatorUnhealthyPolicies': '_global/health_report/types.ts#L187-L190', '_global.health_report.StagnatingBackingIndices': '_global/health_report/types.ts#L159-L163', -'_global.index.Request': '_global/index/IndexRequest.ts#L35-L273', +'_global.index.Request': '_global/index/IndexRequest.ts#L36-L278', '_global.index.Response': '_global/index/IndexResponse.ts#L22-L25', -'_global.info.Request': '_global/info/RootNodeInfoRequest.ts#L22-L41', +'_global.info.Request': '_global/info/RootNodeInfoRequest.ts#L23-L43', '_global.info.Response': '_global/info/RootNodeInfoResponse.ts#L23-L40', '_global.mget.MultiGetError': '_global/mget/types.ts#L62-L66', '_global.mget.Operation': '_global/mget/types.ts#L32-L55', -'_global.mget.Request': '_global/mget/MultiGetRequest.ts#L25-L127', +'_global.mget.Request': '_global/mget/MultiGetRequest.ts#L25-L129', '_global.mget.Response': '_global/mget/MultiGetResponse.ts#L22-L31', '_global.mget.ResponseItem': '_global/mget/types.ts#L57-L60', '_global.msearch.MultiSearchItem': '_global/msearch/types.ts#L65-L68', '_global.msearch.MultiSearchResult': '_global/msearch/types.ts#L55-L58', '_global.msearch.MultisearchHeader': '_global/msearch/types.ts#L37-L53', -'_global.msearch.Request': '_global/msearch/MultiSearchRequest.ts#L31-L159', +'_global.msearch.Request': '_global/msearch/MultiSearchRequest.ts#L32-L162', '_global.msearch.Response': '_global/msearch/MultiSearchResponse.ts#L25-L28', '_global.msearch.ResponseItem': '_global/msearch/types.ts#L60-L63', -'_global.msearch_template.Request': '_global/msearch_template/MultiSearchTemplateRequest.ts#L25-L128', +'_global.msearch_template.Request': '_global/msearch_template/MultiSearchTemplateRequest.ts#L25-L130', '_global.msearch_template.Response': '_global/msearch_template/MultiSearchTemplateResponse.ts#L22-L33', '_global.msearch_template.TemplateConfig': '_global/msearch_template/types.ts#L29-L55', '_global.mtermvectors.Operation': '_global/mtermvectors/types.ts#L35-L94', -'_global.mtermvectors.Request': '_global/mtermvectors/MultiTermVectorsRequest.ts#L31-L134', +'_global.mtermvectors.Request': '_global/mtermvectors/MultiTermVectorsRequest.ts#L32-L140', '_global.mtermvectors.Response': '_global/mtermvectors/MultiTermVectorsResponse.ts#L22-L24', '_global.mtermvectors.TermVectorsResult': '_global/mtermvectors/types.ts#L96-L104', -'_global.open_point_in_time.Request': '_global/open_point_in_time/OpenPointInTimeRequest.ts#L31-L144', +'_global.open_point_in_time.Request': '_global/open_point_in_time/OpenPointInTimeRequest.ts#L32-L150', '_global.open_point_in_time.Response': '_global/open_point_in_time/OpenPointInTimeResponse.ts#L23-L29', -'_global.ping.Request': '_global/ping/PingRequest.ts#L22-L39', -'_global.put_script.Request': '_global/put_script/PutScriptRequest.ts#L25-L88', +'_global.ping.Request': '_global/ping/PingRequest.ts#L23-L41', +'_global.put_script.Request': '_global/put_script/PutScriptRequest.ts#L25-L90', '_global.put_script.Response': '_global/put_script/PutScriptResponse.ts#L22-L25', '_global.rank_eval.DocumentRating': '_global/rank_eval/types.ts#L119-L126', '_global.rank_eval.RankEvalHit': '_global/rank_eval/types.ts#L144-L148', @@ -131,28 +131,28 @@ '_global.rank_eval.RankEvalMetricRecall': '_global/rank_eval/types.ts#L54-L58', '_global.rank_eval.RankEvalQuery': '_global/rank_eval/types.ts#L111-L117', '_global.rank_eval.RankEvalRequestItem': '_global/rank_eval/types.ts#L98-L109', -'_global.rank_eval.Request': '_global/rank_eval/RankEvalRequest.ts#L24-L79', +'_global.rank_eval.Request': '_global/rank_eval/RankEvalRequest.ts#L24-L85', '_global.rank_eval.Response': '_global/rank_eval/RankEvalResponse.ts#L26-L34', '_global.rank_eval.UnratedDocument': '_global/rank_eval/types.ts#L150-L153', '_global.reindex.Destination': '_global/reindex/types.ts#L39-L67', '_global.reindex.RemoteSource': '_global/reindex/types.ts#L112-L140', -'_global.reindex.Request': '_global/reindex/ReindexRequest.ts#L27-L184', +'_global.reindex.Request': '_global/reindex/ReindexRequest.ts#L32-L191', '_global.reindex.Response': '_global/reindex/ReindexResponse.ts#L26-L92', '_global.reindex.Source': '_global/reindex/types.ts#L69-L110', '_global.reindex_rethrottle.ReindexNode': '_global/reindex_rethrottle/types.ts#L33-L35', '_global.reindex_rethrottle.ReindexStatus': '_global/reindex_rethrottle/types.ts#L37-L85', '_global.reindex_rethrottle.ReindexTask': '_global/reindex_rethrottle/types.ts#L87-L98', -'_global.reindex_rethrottle.Request': '_global/reindex_rethrottle/ReindexRethrottleRequest.ts#L24-L63', +'_global.reindex_rethrottle.Request': '_global/reindex_rethrottle/ReindexRethrottleRequest.ts#L24-L64', '_global.reindex_rethrottle.Response': '_global/reindex_rethrottle/ReindexRethrottleResponse.ts#L23-L25', -'_global.render_search_template.Request': '_global/render_search_template/RenderSearchTemplateRequest.ts#L26-L77', +'_global.render_search_template.Request': '_global/render_search_template/RenderSearchTemplateRequest.ts#L26-L79', '_global.render_search_template.Response': '_global/render_search_template/RenderSearchTemplateResponse.ts#L23-L25', '_global.scripts_painless_execute.PainlessContext': '_global/scripts_painless_execute/types.ts#L57-L80', '_global.scripts_painless_execute.PainlessContextSetup': '_global/scripts_painless_execute/types.ts#L27-L46', -'_global.scripts_painless_execute.Request': '_global/scripts_painless_execute/ExecutePainlessScriptRequest.ts#L24-L64', +'_global.scripts_painless_execute.Request': '_global/scripts_painless_execute/ExecutePainlessScriptRequest.ts#L25-L67', '_global.scripts_painless_execute.Response': '_global/scripts_painless_execute/ExecutePainlessScriptResponse.ts#L20-L24', -'_global.scroll.Request': '_global/scroll/ScrollRequest.ts#L24-L88', +'_global.scroll.Request': '_global/scroll/ScrollRequest.ts#L24-L96', '_global.scroll.Response': '_global/scroll/ScrollResponse.ts#L22-L25', -'_global.search.Request': '_global/search/SearchRequest.ts#L54-L608', +'_global.search.Request': '_global/search/SearchRequest.ts#L55-L611', '_global.search.Response': '_global/search/SearchResponse.ts#L34-L37', '_global.search.ResponseBody': '_global/search/SearchResponse.ts#L39-L85', '_global.search._types.AggregationBreakdown': '_global/search/_types/profile.ts#L26-L39', @@ -161,16 +161,16 @@ '_global.search._types.AggregationProfileDelegateDebugFilter': '_global/search/_types/profile.ts#L78-L83', '_global.search._types.BoundaryScanner': '_global/search/_types/highlighting.ts#L26-L45', '_global.search._types.Collector': '_global/search/_types/profile.ts#L94-L99', -'_global.search._types.CompletionContext': '_global/search/_types/suggester.ts#L236-L265', +'_global.search._types.CompletionContext': '_global/search/_types/suggester.ts#L237-L266', '_global.search._types.CompletionSuggest': '_global/search/_types/suggester.ts#L49-L56', '_global.search._types.CompletionSuggestOption': '_global/search/_types/suggester.ts#L74-L85', '_global.search._types.CompletionSuggester': '_global/search/_types/suggester.ts#L164-L182', -'_global.search._types.Context': '_global/search/_types/suggester.ts#L229-L234', +'_global.search._types.Context': '_global/search/_types/suggester.ts#L230-L235', '_global.search._types.DfsKnnProfile': '_global/search/_types/profile.ts#L181-L186', '_global.search._types.DfsProfile': '_global/search/_types/profile.ts#L154-L157', '_global.search._types.DfsStatisticsBreakdown': '_global/search/_types/profile.ts#L170-L179', '_global.search._types.DfsStatisticsProfile': '_global/search/_types/profile.ts#L159-L167', -'_global.search._types.DirectGenerator': '_global/search/_types/suggester.ts#L269-L332', +'_global.search._types.DirectGenerator': '_global/search/_types/suggester.ts#L270-L333', '_global.search._types.FetchProfile': '_global/search/_types/profile.ts#L230-L237', '_global.search._types.FetchProfileBreakdown': '_global/search/_types/profile.ts#L239-L248', '_global.search._types.FetchProfileDebug': '_global/search/_types/profile.ts#L250-L253', @@ -184,28 +184,28 @@ '_global.search._types.HighlighterOrder': '_global/search/_types/highlighting.ts#L169-L171', '_global.search._types.HighlighterTagsSchema': '_global/search/_types/highlighting.ts#L173-L175', '_global.search._types.HighlighterType': '_global/search/_types/highlighting.ts#L177-L192', -'_global.search._types.Hit': '_global/search/_types/hits.ts#L40-L68', -'_global.search._types.HitsMetadata': '_global/search/_types/hits.ts#L70-L79', -'_global.search._types.InnerHits': '_global/search/_types/hits.ts#L113-L147', -'_global.search._types.InnerHitsResult': '_global/search/_types/hits.ts#L91-L93', +'_global.search._types.Hit': '_global/search/_types/hits.ts#L40-L69', +'_global.search._types.HitsMetadata': '_global/search/_types/hits.ts#L71-L81', +'_global.search._types.InnerHits': '_global/search/_types/hits.ts#L115-L149', +'_global.search._types.InnerHitsResult': '_global/search/_types/hits.ts#L93-L95', '_global.search._types.KnnCollectorResult': '_global/search/_types/profile.ts#L222-L228', '_global.search._types.KnnQueryProfileBreakdown': '_global/search/_types/profile.ts#L199-L220', '_global.search._types.KnnQueryProfileResult': '_global/search/_types/profile.ts#L188-L196', -'_global.search._types.LaplaceSmoothingModel': '_global/search/_types/suggester.ts#L431-L436', +'_global.search._types.LaplaceSmoothingModel': '_global/search/_types/suggester.ts#L432-L437', '_global.search._types.LearningToRank': '_global/search/_types/rescoring.ts#L91-L100', -'_global.search._types.LinearInterpolationSmoothingModel': '_global/search/_types/suggester.ts#L438-L442', -'_global.search._types.NestedIdentity': '_global/search/_types/hits.ts#L95-L99', +'_global.search._types.LinearInterpolationSmoothingModel': '_global/search/_types/suggester.ts#L439-L443', +'_global.search._types.NestedIdentity': '_global/search/_types/hits.ts#L97-L101', '_global.search._types.PhraseSuggest': '_global/search/_types/suggester.ts#L58-L63', -'_global.search._types.PhraseSuggestCollate': '_global/search/_types/suggester.ts#L334-L347', -'_global.search._types.PhraseSuggestCollateQuery': '_global/search/_types/suggester.ts#L349-L358', -'_global.search._types.PhraseSuggestHighlight': '_global/search/_types/suggester.ts#L420-L429', +'_global.search._types.PhraseSuggestCollate': '_global/search/_types/suggester.ts#L335-L348', +'_global.search._types.PhraseSuggestCollateQuery': '_global/search/_types/suggester.ts#L350-L359', +'_global.search._types.PhraseSuggestHighlight': '_global/search/_types/suggester.ts#L421-L430', '_global.search._types.PhraseSuggestOption': '_global/search/_types/suggester.ts#L87-L92', -'_global.search._types.PhraseSuggester': '_global/search/_types/suggester.ts#L360-L418', +'_global.search._types.PhraseSuggester': '_global/search/_types/suggester.ts#L361-L419', '_global.search._types.PointInTimeReference': '_global/search/_types/PointInTimeReference.ts#L23-L26', '_global.search._types.Profile': '_global/search/_types/profile.ts#L101-L103', '_global.search._types.QueryBreakdown': '_global/search/_types/profile.ts#L105-L126', '_global.search._types.QueryProfile': '_global/search/_types/profile.ts#L128-L134', -'_global.search._types.RegexOptions': '_global/search/_types/suggester.ts#L184-L195', +'_global.search._types.RegexOptions': '_global/search/_types/suggester.ts#L184-L196', '_global.search._types.Rescore': '_global/search/_types/rescoring.ts#L26-L41', '_global.search._types.RescoreQuery': '_global/search/_types/rescoring.ts#L43-L65', '_global.search._types.ScoreMode': '_global/search/_types/rescoring.ts#L67-L89', @@ -213,49 +213,49 @@ '_global.search._types.SearchProfile': '_global/search/_types/profile.ts#L136-L140', '_global.search._types.SearchRequestBody': '_global/search/_types/SearchRequestBody.ts#L42-L242', '_global.search._types.ShardProfile': '_global/search/_types/profile.ts#L142-L152', -'_global.search._types.SmoothingModelContainer': '_global/search/_types/suggester.ts#L446-L462', +'_global.search._types.SmoothingModelContainer': '_global/search/_types/suggester.ts#L447-L463', '_global.search._types.SourceConfig': '_global/search/_types/SourceFilter.ts#L50-L54', '_global.search._types.SourceConfigParam': '_global/search/_types/SourceFilter.ts#L56-L62', '_global.search._types.SourceFilter': '_global/search/_types/SourceFilter.ts#L23-L48', -'_global.search._types.StringDistance': '_global/search/_types/suggester.ts#L473-L494', -'_global.search._types.StupidBackoffSmoothingModel': '_global/search/_types/suggester.ts#L464-L469', +'_global.search._types.StringDistance': '_global/search/_types/suggester.ts#L474-L495', +'_global.search._types.StupidBackoffSmoothingModel': '_global/search/_types/suggester.ts#L465-L470', '_global.search._types.Suggest': '_global/search/_types/suggester.ts#L35-L41', '_global.search._types.SuggestBase': '_global/search/_types/suggester.ts#L43-L47', -'_global.search._types.SuggestFuzziness': '_global/search/_types/suggester.ts#L197-L225', -'_global.search._types.SuggestSort': '_global/search/_types/suggester.ts#L496-L505', +'_global.search._types.SuggestFuzziness': '_global/search/_types/suggester.ts#L198-L226', +'_global.search._types.SuggestSort': '_global/search/_types/suggester.ts#L497-L506', '_global.search._types.Suggester': '_global/search/_types/suggester.ts#L102-L108', '_global.search._types.SuggesterBase': '_global/search/_types/suggester.ts#L145-L160', '_global.search._types.TermSuggest': '_global/search/_types/suggester.ts#L65-L70', '_global.search._types.TermSuggestOption': '_global/search/_types/suggester.ts#L94-L100', -'_global.search._types.TermSuggester': '_global/search/_types/suggester.ts#L507-L569', -'_global.search._types.TotalHits': '_global/search/_types/hits.ts#L101-L104', -'_global.search._types.TotalHitsRelation': '_global/search/_types/hits.ts#L106-L111', -'_global.search._types.TrackHits': '_global/search/_types/hits.ts#L149-L157', -'_global.search_mvt.Request': '_global/search_mvt/SearchMvtRequest.ts#L33-L348', +'_global.search._types.TermSuggester': '_global/search/_types/suggester.ts#L508-L570', +'_global.search._types.TotalHits': '_global/search/_types/hits.ts#L103-L106', +'_global.search._types.TotalHitsRelation': '_global/search/_types/hits.ts#L108-L113', +'_global.search._types.TrackHits': '_global/search/_types/hits.ts#L151-L159', +'_global.search_mvt.Request': '_global/search_mvt/SearchMvtRequest.ts#L39-L356', '_global.search_mvt.Response': '_global/search_mvt/SearchMvtResponse.ts#L22-L25', '_global.search_mvt._types.GridAggregationType': '_global/search_mvt/_types/GridType.ts#L30-L33', '_global.search_mvt._types.GridType': '_global/search_mvt/_types/GridType.ts#L20-L28', -'_global.search_shards.Request': '_global/search_shards/SearchShardsRequest.ts#L24-L99', +'_global.search_shards.Request': '_global/search_shards/SearchShardsRequest.ts#L24-L100', '_global.search_shards.Response': '_global/search_shards/SearchShardsResponse.ts#L34-L40', '_global.search_shards.SearchShardsNodeAttributes': '_global/search_shards/SearchShardsResponse.ts#L42-L60', '_global.search_shards.ShardStoreIndex': '_global/search_shards/SearchShardsResponse.ts#L62-L65', -'_global.search_template.Request': '_global/search_template/SearchTemplateRequest.ts#L34-L168', +'_global.search_template.Request': '_global/search_template/SearchTemplateRequest.ts#L35-L172', '_global.search_template.Response': '_global/search_template/SearchTemplateResponse.ts#L30-L48', -'_global.terms_enum.Request': '_global/terms_enum/TermsEnumRequest.ts#L26-L93', +'_global.terms_enum.Request': '_global/terms_enum/TermsEnumRequest.ts#L26-L95', '_global.terms_enum.Response': '_global/terms_enum/TermsEnumResponse.ts#L22-L32', '_global.termvectors.FieldStatistics': '_global/termvectors/types.ts#L28-L32', '_global.termvectors.Filter': '_global/termvectors/types.ts#L49-L86', -'_global.termvectors.Request': '_global/termvectors/TermVectorsRequest.ts#L33-L241', +'_global.termvectors.Request': '_global/termvectors/TermVectorsRequest.ts#L34-L244', '_global.termvectors.Response': '_global/termvectors/TermVectorsResponse.ts#L25-L34', '_global.termvectors.Term': '_global/termvectors/types.ts#L34-L40', '_global.termvectors.TermVector': '_global/termvectors/types.ts#L23-L26', '_global.termvectors.Token': '_global/termvectors/types.ts#L42-L47', -'_global.update.Request': '_global/update/UpdateRequest.ts#L38-L196', +'_global.update.Request': '_global/update/UpdateRequest.ts#L39-L199', '_global.update.Response': '_global/update/UpdateResponse.ts#L27-L30', '_global.update.UpdateWriteResponseBase': '_global/update/UpdateResponse.ts#L23-L25', -'_global.update_by_query.Request': '_global/update_by_query/UpdateByQueryRequest.ts#L37-L351', -'_global.update_by_query.Response': '_global/update_by_query/UpdateByQueryResponse.ts#L26-L67', -'_global.update_by_query_rethrottle.Request': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleRequest.ts#L24-L55', +'_global.update_by_query.Request': '_global/update_by_query/UpdateByQueryRequest.ts#L38-L357', +'_global.update_by_query.Response': '_global/update_by_query/UpdateByQueryResponse.ts#L26-L71', +'_global.update_by_query_rethrottle.Request': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleRequest.ts#L24-L56', '_global.update_by_query_rethrottle.Response': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleResponse.ts#L23-L25', '_global.update_by_query_rethrottle.UpdateByQueryRethrottleNode': '_global/update_by_query_rethrottle/UpdateByQueryRethrottleNode.ts#L25-L27', '_spec_utils.BaseNode': '_spec_utils/BaseNode.ts#L25-L32', @@ -264,9 +264,9 @@ '_types.BulkStats': '_types/Stats.ts#L71-L81', '_types.Bytes': '_types/common.ts#L164-L176', '_types.CartesianPoint': '_types/Geo.ts#L125-L128', -'_types.ChunkRescorer': '_types/Retriever.ts#L181-L186', +'_types.ChunkRescorer': '_types/Retriever.ts#L184-L189', '_types.ClusterDetails': '_types/Stats.ts#L45-L52', -'_types.ClusterInfoTarget': '_types/common.ts#L385-L391', +'_types.ClusterInfoTarget': '_types/common.ts#L398-L404', '_types.ClusterSearchStatus': '_types/Stats.ts#L37-L43', '_types.ClusterStatistics': '_types/Stats.ts#L27-L35', '_types.CompletionStats': '_types/Stats.ts#L83-L93', @@ -304,15 +304,15 @@ '_types.IBDistribution': '_types/Similarity.ts#L42-L45', '_types.IBLambda': '_types/Similarity.ts#L47-L50', '_types.IndexingStats': '_types/Stats.ts#L168-L186', -'_types.IndicesOptions': '_types/common.ts#L339-L366', +'_types.IndicesOptions': '_types/common.ts#L352-L379', '_types.IndicesResponseBase': '_types/Base.ts#L146-L148', -'_types.InlineGet': '_types/common.ts#L324-L337', +'_types.InlineGet': '_types/common.ts#L337-L350', '_types.InnerRetriever': '_types/Retriever.ts#L86-L90', -'_types.KnnQuery': '_types/Knn.ts#L69-L97', -'_types.KnnRetriever': '_types/Retriever.ts#L116-L139', -'_types.KnnSearch': '_types/Knn.ts#L35-L67', +'_types.KnnQuery': '_types/Knn.ts#L71-L101', +'_types.KnnRetriever': '_types/Retriever.ts#L116-L141', +'_types.KnnSearch': '_types/Knn.ts#L35-L69', '_types.LatLonGeoLocation': '_types/Geo.ts#L114-L123', -'_types.Level': '_types/common.ts#L247-L251', +'_types.Level': '_types/common.ts#L260-L264', '_types.LifecycleOperationMode': '_types/Lifecycle.ts#L20-L24', '_types.LinearRetriever': '_types/Retriever.ts#L69-L76', '_types.MergesStats': '_types/Stats.ts#L188-L205', @@ -321,18 +321,18 @@ '_types.NodeRole': '_types/Node.ts#L71-L89', '_types.NodeShard': '_types/Node.ts#L54-L65', '_types.NodeStatistics': '_types/Node.ts#L28-L39', -'_types.NodeStatsLevel': '_types/common.ts#L253-L257', +'_types.NodeStatsLevel': '_types/common.ts#L266-L270', '_types.Normalization': '_types/Similarity.ts#L52-L58', -'_types.OpType': '_types/common.ts#L259-L268', +'_types.OpType': '_types/common.ts#L272-L281', '_types.PinnedRetriever': '_types/Retriever.ts#L78-L84', '_types.PluginStats': '_types/Stats.ts#L207-L217', '_types.QueryCacheStats': '_types/Stats.ts#L219-L253', -'_types.QueryVectorBuilder': '_types/Knn.ts#L99-L102', -'_types.RRFRetriever': '_types/Retriever.ts#L141-L150', +'_types.QueryVectorBuilder': '_types/Knn.ts#L103-L106', +'_types.RRFRetriever': '_types/Retriever.ts#L143-L152', '_types.RankBase': '_types/Rank.ts#L30-L30', '_types.RankContainer': '_types/Rank.ts#L22-L28', '_types.RecoveryStats': '_types/Stats.ts#L255-L260', -'_types.Refresh': '_types/common.ts#L270-L277', +'_types.Refresh': '_types/common.ts#L283-L290', '_types.RefreshStats': '_types/Stats.ts#L262-L269', '_types.RelocationFailureInfo': '_types/Node.ts#L67-L69', '_types.RequestBase': '_types/Base.ts#L35-L35', @@ -344,7 +344,7 @@ '_types.RetrieverBase': '_types/Retriever.ts#L54-L61', '_types.RetrieverContainer': '_types/Retriever.ts#L29-L52', '_types.RrfRank': '_types/Rank.ts#L32-L37', -'_types.RuleRetriever': '_types/Retriever.ts#L170-L179', +'_types.RuleRetriever': '_types/Retriever.ts#L173-L182', '_types.ScoreNormalizer': '_types/Retriever.ts#L92-L96', '_types.ScoreSort': '_types/sort.ts#L54-L56', '_types.Script': '_types/Scripting.ts#L65-L89', @@ -356,14 +356,14 @@ '_types.ScriptTransform': '_types/Transform.ts#L37-L45', '_types.SearchStats': '_types/Stats.ts#L279-L299', '_types.SearchTransform': '_types/Transform.ts#L47-L50', -'_types.SearchType': '_types/common.ts#L279-L284', +'_types.SearchType': '_types/common.ts#L292-L297', '_types.SegmentsStats': '_types/Stats.ts#L301-L396', '_types.ShardFailure': '_types/Errors.ts#L52-L62', '_types.ShardStatistics': '_types/Stats.ts#L54-L69', '_types.ShardsOperationResponseBase': '_types/Base.ts#L150-L153', '_types.SlicedScroll': '_types/SlicedScroll.ts#L23-L27', -'_types.Slices': '_types/common.ts#L368-L373', -'_types.SlicesCalculation': '_types/common.ts#L375-L383', +'_types.Slices': '_types/common.ts#L381-L386', +'_types.SlicesCalculation': '_types/common.ts#L388-L396', '_types.SortMode': '_types/sort.ts#L108-L117', '_types.SortOptions': '_types/sort.ts#L86-L96', '_types.SortOrder': '_types/sort.ts#L119-L128', @@ -371,40 +371,40 @@ '_types.StandardRetriever': '_types/Retriever.ts#L103-L114', '_types.StoreStats': '_types/Stats.ts#L398-L425', '_types.StoredScript': '_types/Scripting.ts#L51-L63', -'_types.SuggestMode': '_types/common.ts#L286-L299', +'_types.SuggestMode': '_types/common.ts#L299-L312', '_types.TaskFailure': '_types/Errors.ts#L71-L76', -'_types.TextEmbedding': '_types/Knn.ts#L104-L113', -'_types.TextSimilarityReranker': '_types/Retriever.ts#L152-L168', -'_types.ThreadType': '_types/common.ts#L301-L307', +'_types.TextEmbedding': '_types/Knn.ts#L108-L117', +'_types.TextSimilarityReranker': '_types/Retriever.ts#L154-L171', +'_types.ThreadType': '_types/common.ts#L314-L320', '_types.TimeUnit': '_types/Time.ts#L70-L78', -'_types.TokenPruningConfig': '_types/TokenPruningConfig.ts#L22-L35', +'_types.TokenPruningConfig': '_types/TokenPruningConfig.ts#L22-L38', '_types.TopLeftBottomRightGeoBounds': '_types/Geo.ts#L160-L163', '_types.TopRightBottomLeftGeoBounds': '_types/Geo.ts#L165-L168', '_types.TransformContainer': '_types/Transform.ts#L28-L35', '_types.TranslogStats': '_types/Stats.ts#L427-L435', '_types.VersionType': '_types/common.ts#L102-L117', -'_types.WaitForActiveShardOptions': '_types/common.ts#L309-L313', +'_types.WaitForActiveShardOptions': '_types/common.ts#L322-L326', '_types.WaitForActiveShards': '_types/common.ts#L137-L138', -'_types.WaitForEvents': '_types/common.ts#L315-L322', +'_types.WaitForEvents': '_types/common.ts#L328-L335', '_types.WarmerStats': '_types/Stats.ts#L437-L442', '_types.WktGeoBounds': '_types/Geo.ts#L149-L151', '_types.WriteResponseBase': '_types/Base.ts#L37-L72', '_types.aggregations.AbstractChangePoint': '_types/aggregations/Aggregate.ts#L412-L415', -'_types.aggregations.AdjacencyMatrixAggregate': '_types/aggregations/Aggregate.ts#L720-L725', +'_types.aggregations.AdjacencyMatrixAggregate': '_types/aggregations/Aggregate.ts#L721-L726', '_types.aggregations.AdjacencyMatrixAggregation': '_types/aggregations/bucket.ts#L60-L70', -'_types.aggregations.AdjacencyMatrixBucket': '_types/aggregations/Aggregate.ts#L727-L729', +'_types.aggregations.AdjacencyMatrixBucket': '_types/aggregations/Aggregate.ts#L728-L730', '_types.aggregations.Aggregate': '_types/aggregations/Aggregate.ts#L40-L130', '_types.aggregations.AggregateBase': '_types/aggregations/Aggregate.ts#L141-L143', '_types.aggregations.Aggregation': '_types/aggregations/Aggregation.ts#L20-L20', -'_types.aggregations.AggregationContainer': '_types/aggregations/AggregationContainer.ts#L110-L556', +'_types.aggregations.AggregationContainer': '_types/aggregations/AggregationContainer.ts#L110-L555', '_types.aggregations.AggregationRange': '_types/aggregations/bucket.ts#L694-L707', '_types.aggregations.ArrayPercentilesItem': '_types/aggregations/Aggregate.ts#L167-L171', -'_types.aggregations.AutoDateHistogramAggregate': '_types/aggregations/Aggregate.ts#L464-L471', +'_types.aggregations.AutoDateHistogramAggregate': '_types/aggregations/Aggregate.ts#L465-L472', '_types.aggregations.AutoDateHistogramAggregation': '_types/aggregations/bucket.ts#L72-L110', '_types.aggregations.AverageAggregation': '_types/aggregations/metric.ts#L55-L55', '_types.aggregations.AverageBucketAggregation': '_types/aggregations/pipeline.ts#L78-L81', '_types.aggregations.AvgAggregate': '_types/aggregations/Aggregate.ts#L223-L227', -'_types.aggregations.BoxPlotAggregate': '_types/aggregations/Aggregate.ts#L879-L898', +'_types.aggregations.BoxPlotAggregate': '_types/aggregations/Aggregate.ts#L880-L899', '_types.aggregations.BoxplotAggregation': '_types/aggregations/metric.ts#L57-L68', '_types.aggregations.BucketAggregationBase': '_types/aggregations/bucket.ts#L53-L58', '_types.aggregations.BucketCorrelationAggregation': '_types/aggregations/pipeline.ts#L139-L146', @@ -434,25 +434,25 @@ '_types.aggregations.ChangePointBucket': '_types/aggregations/Aggregate.ts#L394-L396', '_types.aggregations.ChangeType': '_types/aggregations/Aggregate.ts#L398-L410', '_types.aggregations.ChiSquareHeuristic': '_types/aggregations/bucket.ts#L785-L794', -'_types.aggregations.ChildrenAggregate': '_types/aggregations/Aggregate.ts#L961-L965', +'_types.aggregations.ChildrenAggregate': '_types/aggregations/Aggregate.ts#L962-L966', '_types.aggregations.ChildrenAggregation': '_types/aggregations/bucket.ts#L121-L126', -'_types.aggregations.CompositeAggregate': '_types/aggregations/Aggregate.ts#L771-L776', +'_types.aggregations.CompositeAggregate': '_types/aggregations/Aggregate.ts#L772-L777', '_types.aggregations.CompositeAggregation': '_types/aggregations/bucket.ts#L130-L149', '_types.aggregations.CompositeAggregationBase': '_types/aggregations/bucket.ts#L173-L182', '_types.aggregations.CompositeAggregationSource': '_types/aggregations/bucket.ts#L151-L171', -'_types.aggregations.CompositeBucket': '_types/aggregations/Aggregate.ts#L778-L780', +'_types.aggregations.CompositeBucket': '_types/aggregations/Aggregate.ts#L779-L781', '_types.aggregations.CompositeDateHistogramAggregation': '_types/aggregations/bucket.ts#L190-L198', '_types.aggregations.CompositeGeoTileGridAggregation': '_types/aggregations/bucket.ts#L200-L203', '_types.aggregations.CompositeHistogramAggregation': '_types/aggregations/bucket.ts#L186-L188', '_types.aggregations.CompositeTermsAggregation': '_types/aggregations/bucket.ts#L184-L184', -'_types.aggregations.CumulativeCardinalityAggregate': '_types/aggregations/Aggregate.ts#L929-L937', +'_types.aggregations.CumulativeCardinalityAggregate': '_types/aggregations/Aggregate.ts#L930-L938', '_types.aggregations.CumulativeCardinalityAggregation': '_types/aggregations/pipeline.ts#L208-L211', '_types.aggregations.CumulativeSumAggregation': '_types/aggregations/pipeline.ts#L213-L216', '_types.aggregations.CustomCategorizeTextAnalyzer': '_types/aggregations/bucket.ts#L1219-L1223', -'_types.aggregations.DateHistogramAggregate': '_types/aggregations/Aggregate.ts#L454-L457', +'_types.aggregations.DateHistogramAggregate': '_types/aggregations/Aggregate.ts#L454-L458', '_types.aggregations.DateHistogramAggregation': '_types/aggregations/bucket.ts#L205-L263', -'_types.aggregations.DateHistogramBucket': '_types/aggregations/Aggregate.ts#L459-L462', -'_types.aggregations.DateRangeAggregate': '_types/aggregations/Aggregate.ts#L680-L686', +'_types.aggregations.DateHistogramBucket': '_types/aggregations/Aggregate.ts#L460-L463', +'_types.aggregations.DateRangeAggregate': '_types/aggregations/Aggregate.ts#L681-L687', '_types.aggregations.DateRangeAggregation': '_types/aggregations/bucket.ts#L284-L310', '_types.aggregations.DateRangeExpression': '_types/aggregations/bucket.ts#L321-L334', '_types.aggregations.DerivativeAggregate': '_types/aggregations/Aggregate.ts#L246-L253', @@ -460,8 +460,8 @@ '_types.aggregations.Dip': '_types/aggregations/Aggregate.ts#L417-L417', '_types.aggregations.DistributionChange': '_types/aggregations/Aggregate.ts#L419-L419', '_types.aggregations.DiversifiedSamplerAggregation': '_types/aggregations/bucket.ts#L336-L360', -'_types.aggregations.DoubleTermsAggregate': '_types/aggregations/Aggregate.ts#L522-L527', -'_types.aggregations.DoubleTermsBucket': '_types/aggregations/Aggregate.ts#L529-L532', +'_types.aggregations.DoubleTermsAggregate': '_types/aggregations/Aggregate.ts#L523-L528', +'_types.aggregations.DoubleTermsBucket': '_types/aggregations/Aggregate.ts#L530-L533', '_types.aggregations.EwmaModelSettings': '_types/aggregations/pipeline.ts#L295-L297', '_types.aggregations.EwmaMovingAverageAggregation': '_types/aggregations/pipeline.ts#L280-L283', '_types.aggregations.ExtendedBounds': '_types/aggregations/bucket.ts#L511-L520', @@ -470,37 +470,37 @@ '_types.aggregations.ExtendedStatsBucketAggregate': '_types/aggregations/Aggregate.ts#L327-L328', '_types.aggregations.ExtendedStatsBucketAggregation': '_types/aggregations/pipeline.ts#L220-L225', '_types.aggregations.FieldDateMath': '_types/aggregations/bucket.ts#L312-L319', -'_types.aggregations.FilterAggregate': '_types/aggregations/Aggregate.ts#L623-L627', -'_types.aggregations.FiltersAggregate': '_types/aggregations/Aggregate.ts#L710-L714', +'_types.aggregations.FilterAggregate': '_types/aggregations/Aggregate.ts#L624-L628', +'_types.aggregations.FiltersAggregate': '_types/aggregations/Aggregate.ts#L711-L715', '_types.aggregations.FiltersAggregation': '_types/aggregations/bucket.ts#L377-L397', -'_types.aggregations.FiltersBucket': '_types/aggregations/Aggregate.ts#L716-L718', +'_types.aggregations.FiltersBucket': '_types/aggregations/Aggregate.ts#L717-L719', '_types.aggregations.FormatMetricAggregationBase': '_types/aggregations/metric.ts#L47-L49', '_types.aggregations.FormattableMetricAggregation': '_types/aggregations/metric.ts#L51-L53', -'_types.aggregations.FrequentItemSetsAggregate': '_types/aggregations/Aggregate.ts#L795-L796', +'_types.aggregations.FrequentItemSetsAggregate': '_types/aggregations/Aggregate.ts#L796-L797', '_types.aggregations.FrequentItemSetsAggregation': '_types/aggregations/bucket.ts#L1270-L1297', -'_types.aggregations.FrequentItemSetsBucket': '_types/aggregations/Aggregate.ts#L798-L801', +'_types.aggregations.FrequentItemSetsBucket': '_types/aggregations/Aggregate.ts#L799-L802', '_types.aggregations.FrequentItemSetsField': '_types/aggregations/bucket.ts#L1256-L1268', '_types.aggregations.GapPolicy': '_types/aggregations/pipeline.ts#L61-L76', '_types.aggregations.GeoBoundsAggregate': '_types/aggregations/Aggregate.ts#L343-L349', '_types.aggregations.GeoBoundsAggregation': '_types/aggregations/metric.ts#L118-L127', '_types.aggregations.GeoCentroidAggregate': '_types/aggregations/Aggregate.ts#L351-L358', '_types.aggregations.GeoCentroidAggregation': '_types/aggregations/metric.ts#L129-L132', -'_types.aggregations.GeoDistanceAggregate': '_types/aggregations/Aggregate.ts#L688-L693', +'_types.aggregations.GeoDistanceAggregate': '_types/aggregations/Aggregate.ts#L689-L694', '_types.aggregations.GeoDistanceAggregation': '_types/aggregations/bucket.ts#L399-L422', -'_types.aggregations.GeoHashGridAggregate': '_types/aggregations/Aggregate.ts#L637-L639', +'_types.aggregations.GeoHashGridAggregate': '_types/aggregations/Aggregate.ts#L638-L640', '_types.aggregations.GeoHashGridAggregation': '_types/aggregations/bucket.ts#L424-L452', -'_types.aggregations.GeoHashGridBucket': '_types/aggregations/Aggregate.ts#L641-L643', -'_types.aggregations.GeoHexGridAggregate': '_types/aggregations/Aggregate.ts#L656-L657', -'_types.aggregations.GeoHexGridBucket': '_types/aggregations/Aggregate.ts#L659-L661', -'_types.aggregations.GeoLineAggregate': '_types/aggregations/Aggregate.ts#L975-L985', +'_types.aggregations.GeoHashGridBucket': '_types/aggregations/Aggregate.ts#L642-L644', +'_types.aggregations.GeoHexGridAggregate': '_types/aggregations/Aggregate.ts#L657-L658', +'_types.aggregations.GeoHexGridBucket': '_types/aggregations/Aggregate.ts#L660-L662', +'_types.aggregations.GeoLineAggregate': '_types/aggregations/Aggregate.ts#L976-L986', '_types.aggregations.GeoLineAggregation': '_types/aggregations/metric.ts#L134-L159', '_types.aggregations.GeoLinePoint': '_types/aggregations/metric.ts#L168-L173', '_types.aggregations.GeoLineSort': '_types/aggregations/metric.ts#L161-L166', -'_types.aggregations.GeoTileGridAggregate': '_types/aggregations/Aggregate.ts#L645-L650', +'_types.aggregations.GeoTileGridAggregate': '_types/aggregations/Aggregate.ts#L646-L651', '_types.aggregations.GeoTileGridAggregation': '_types/aggregations/bucket.ts#L454-L480', -'_types.aggregations.GeoTileGridBucket': '_types/aggregations/Aggregate.ts#L652-L654', +'_types.aggregations.GeoTileGridBucket': '_types/aggregations/Aggregate.ts#L653-L655', '_types.aggregations.GeohexGridAggregation': '_types/aggregations/bucket.ts#L482-L507', -'_types.aggregations.GlobalAggregate': '_types/aggregations/Aggregate.ts#L617-L621', +'_types.aggregations.GlobalAggregate': '_types/aggregations/Aggregate.ts#L618-L622', '_types.aggregations.GlobalAggregation': '_types/aggregations/bucket.ts#L509-L509', '_types.aggregations.GoogleNormalizedDistanceHeuristic': '_types/aggregations/bucket.ts#L796-L801', '_types.aggregations.HdrMethod': '_types/aggregations/metric.ts#L241-L246', @@ -515,28 +515,28 @@ '_types.aggregations.HoltWintersMovingAverageAggregation': '_types/aggregations/pipeline.ts#L290-L293', '_types.aggregations.HoltWintersType': '_types/aggregations/pipeline.ts#L311-L314', '_types.aggregations.Indeterminable': '_types/aggregations/Aggregate.ts#L425-L427', -'_types.aggregations.InferenceAggregate': '_types/aggregations/Aggregate.ts#L828-L843', +'_types.aggregations.InferenceAggregate': '_types/aggregations/Aggregate.ts#L829-L844', '_types.aggregations.InferenceAggregation': '_types/aggregations/pipeline.ts#L227-L236', -'_types.aggregations.InferenceClassImportance': '_types/aggregations/Aggregate.ts#L857-L860', +'_types.aggregations.InferenceClassImportance': '_types/aggregations/Aggregate.ts#L858-L861', '_types.aggregations.InferenceConfigContainer': '_types/aggregations/pipeline.ts#L238-L244', -'_types.aggregations.InferenceFeatureImportance': '_types/aggregations/Aggregate.ts#L851-L855', -'_types.aggregations.InferenceTopClassEntry': '_types/aggregations/Aggregate.ts#L845-L849', -'_types.aggregations.IpPrefixAggregate': '_types/aggregations/Aggregate.ts#L782-L786', +'_types.aggregations.InferenceFeatureImportance': '_types/aggregations/Aggregate.ts#L852-L856', +'_types.aggregations.InferenceTopClassEntry': '_types/aggregations/Aggregate.ts#L846-L850', +'_types.aggregations.IpPrefixAggregate': '_types/aggregations/Aggregate.ts#L783-L787', '_types.aggregations.IpPrefixAggregation': '_types/aggregations/bucket.ts#L1225-L1254', -'_types.aggregations.IpPrefixBucket': '_types/aggregations/Aggregate.ts#L788-L793', -'_types.aggregations.IpRangeAggregate': '_types/aggregations/Aggregate.ts#L695-L700', +'_types.aggregations.IpPrefixBucket': '_types/aggregations/Aggregate.ts#L789-L794', +'_types.aggregations.IpRangeAggregate': '_types/aggregations/Aggregate.ts#L696-L701', '_types.aggregations.IpRangeAggregation': '_types/aggregations/bucket.ts#L570-L579', '_types.aggregations.IpRangeAggregationRange': '_types/aggregations/bucket.ts#L581-L594', -'_types.aggregations.IpRangeBucket': '_types/aggregations/Aggregate.ts#L702-L706', +'_types.aggregations.IpRangeBucket': '_types/aggregations/Aggregate.ts#L703-L707', '_types.aggregations.LinearMovingAverageAggregation': '_types/aggregations/pipeline.ts#L270-L273', -'_types.aggregations.LongRareTermsAggregate': '_types/aggregations/Aggregate.ts#L542-L547', -'_types.aggregations.LongRareTermsBucket': '_types/aggregations/Aggregate.ts#L549-L552', -'_types.aggregations.LongTermsAggregate': '_types/aggregations/Aggregate.ts#L510-L515', -'_types.aggregations.LongTermsBucket': '_types/aggregations/Aggregate.ts#L517-L520', +'_types.aggregations.LongRareTermsAggregate': '_types/aggregations/Aggregate.ts#L543-L548', +'_types.aggregations.LongRareTermsBucket': '_types/aggregations/Aggregate.ts#L550-L553', +'_types.aggregations.LongTermsAggregate': '_types/aggregations/Aggregate.ts#L511-L516', +'_types.aggregations.LongTermsBucket': '_types/aggregations/Aggregate.ts#L518-L521', '_types.aggregations.MatrixAggregation': '_types/aggregations/matrix.ts#L26-L36', -'_types.aggregations.MatrixStatsAggregate': '_types/aggregations/Aggregate.ts#L939-L946', +'_types.aggregations.MatrixStatsAggregate': '_types/aggregations/Aggregate.ts#L940-L947', '_types.aggregations.MatrixStatsAggregation': '_types/aggregations/matrix.ts#L38-L44', -'_types.aggregations.MatrixStatsFields': '_types/aggregations/Aggregate.ts#L948-L957', +'_types.aggregations.MatrixStatsFields': '_types/aggregations/Aggregate.ts#L949-L958', '_types.aggregations.MaxAggregate': '_types/aggregations/Aggregate.ts#L210-L214', '_types.aggregations.MaxAggregation': '_types/aggregations/metric.ts#L175-L175', '_types.aggregations.MaxBucketAggregation': '_types/aggregations/pipeline.ts#L246-L249', @@ -547,9 +547,9 @@ '_types.aggregations.MinAggregation': '_types/aggregations/metric.ts#L194-L194', '_types.aggregations.MinBucketAggregation': '_types/aggregations/pipeline.ts#L251-L254', '_types.aggregations.MinimumInterval': '_types/aggregations/bucket.ts#L112-L119', -'_types.aggregations.MissingAggregate': '_types/aggregations/Aggregate.ts#L599-L603', +'_types.aggregations.MissingAggregate': '_types/aggregations/Aggregate.ts#L600-L604', '_types.aggregations.MissingAggregation': '_types/aggregations/bucket.ts#L596-L602', -'_types.aggregations.MissingOrder': '_types/aggregations/AggregationContainer.ts#L559-L563', +'_types.aggregations.MissingOrder': '_types/aggregations/AggregationContainer.ts#L558-L562', '_types.aggregations.MovingAverageAggregation': '_types/aggregations/pipeline.ts#L256-L262', '_types.aggregations.MovingAverageAggregationBase': '_types/aggregations/pipeline.ts#L264-L268', '_types.aggregations.MovingFunctionAggregation': '_types/aggregations/pipeline.ts#L316-L334', @@ -557,17 +557,17 @@ '_types.aggregations.MultiBucketAggregateBase': '_types/aggregations/Aggregate.ts#L373-L375', '_types.aggregations.MultiBucketBase': '_types/aggregations/Aggregate.ts#L377-L386', '_types.aggregations.MultiTermLookup': '_types/aggregations/bucket.ts#L646-L656', -'_types.aggregations.MultiTermsAggregate': '_types/aggregations/Aggregate.ts#L572-L577', +'_types.aggregations.MultiTermsAggregate': '_types/aggregations/Aggregate.ts#L573-L578', '_types.aggregations.MultiTermsAggregation': '_types/aggregations/bucket.ts#L604-L644', -'_types.aggregations.MultiTermsBucket': '_types/aggregations/Aggregate.ts#L579-L583', +'_types.aggregations.MultiTermsBucket': '_types/aggregations/Aggregate.ts#L580-L584', '_types.aggregations.MutualInformationHeuristic': '_types/aggregations/bucket.ts#L803-L812', -'_types.aggregations.NestedAggregate': '_types/aggregations/Aggregate.ts#L605-L609', +'_types.aggregations.NestedAggregate': '_types/aggregations/Aggregate.ts#L606-L610', '_types.aggregations.NestedAggregation': '_types/aggregations/bucket.ts#L658-L663', '_types.aggregations.NonStationary': '_types/aggregations/Aggregate.ts#L429-L433', '_types.aggregations.NormalizeAggregation': '_types/aggregations/pipeline.ts#L353-L361', '_types.aggregations.NormalizeMethod': '_types/aggregations/pipeline.ts#L363-L389', '_types.aggregations.PValueHeuristic': '_types/aggregations/bucket.ts#L820-L834', -'_types.aggregations.ParentAggregate': '_types/aggregations/Aggregate.ts#L967-L971', +'_types.aggregations.ParentAggregate': '_types/aggregations/Aggregate.ts#L968-L972', '_types.aggregations.ParentAggregation': '_types/aggregations/bucket.ts#L665-L670', '_types.aggregations.PercentageScoreHeuristic': '_types/aggregations/bucket.ts#L814-L814', '_types.aggregations.PercentileRanksAggregation': '_types/aggregations/metric.ts#L196-L218', @@ -578,33 +578,33 @@ '_types.aggregations.PercentilesBucketAggregation': '_types/aggregations/pipeline.ts#L391-L399', '_types.aggregations.PipelineAggregationBase': '_types/aggregations/pipeline.ts#L39-L51', '_types.aggregations.RandomSamplerAggregation': '_types/aggregations/bucket.ts#L752-L772', -'_types.aggregations.RangeAggregate': '_types/aggregations/Aggregate.ts#L665-L669', +'_types.aggregations.RangeAggregate': '_types/aggregations/Aggregate.ts#L666-L670', '_types.aggregations.RangeAggregation': '_types/aggregations/bucket.ts#L672-L692', -'_types.aggregations.RangeBucket': '_types/aggregations/Aggregate.ts#L671-L678', +'_types.aggregations.RangeBucket': '_types/aggregations/Aggregate.ts#L672-L679', '_types.aggregations.RareTermsAggregation': '_types/aggregations/bucket.ts#L709-L742', -'_types.aggregations.RateAggregate': '_types/aggregations/Aggregate.ts#L920-L927', +'_types.aggregations.RateAggregate': '_types/aggregations/Aggregate.ts#L921-L928', '_types.aggregations.RateAggregation': '_types/aggregations/metric.ts#L266-L277', '_types.aggregations.RateMode': '_types/aggregations/metric.ts#L279-L288', -'_types.aggregations.ReverseNestedAggregate': '_types/aggregations/Aggregate.ts#L611-L615', +'_types.aggregations.ReverseNestedAggregate': '_types/aggregations/Aggregate.ts#L612-L616', '_types.aggregations.ReverseNestedAggregation': '_types/aggregations/bucket.ts#L744-L750', -'_types.aggregations.SamplerAggregate': '_types/aggregations/Aggregate.ts#L629-L630', +'_types.aggregations.SamplerAggregate': '_types/aggregations/Aggregate.ts#L630-L631', '_types.aggregations.SamplerAggregation': '_types/aggregations/bucket.ts#L774-L783', '_types.aggregations.SamplerAggregationExecutionHint': '_types/aggregations/bucket.ts#L362-L375', '_types.aggregations.ScriptedHeuristic': '_types/aggregations/bucket.ts#L816-L818', -'_types.aggregations.ScriptedMetricAggregate': '_types/aggregations/Aggregate.ts#L812-L818', +'_types.aggregations.ScriptedMetricAggregate': '_types/aggregations/Aggregate.ts#L813-L819', '_types.aggregations.ScriptedMetricAggregation': '_types/aggregations/metric.ts#L290-L316', '_types.aggregations.SerialDifferencingAggregation': '_types/aggregations/pipeline.ts#L401-L410', -'_types.aggregations.SignificantLongTermsAggregate': '_types/aggregations/Aggregate.ts#L741-L743', -'_types.aggregations.SignificantLongTermsBucket': '_types/aggregations/Aggregate.ts#L750-L753', -'_types.aggregations.SignificantStringTermsAggregate': '_types/aggregations/Aggregate.ts#L755-L757', -'_types.aggregations.SignificantStringTermsBucket': '_types/aggregations/Aggregate.ts#L759-L761', -'_types.aggregations.SignificantTermsAggregateBase': '_types/aggregations/Aggregate.ts#L731-L739', +'_types.aggregations.SignificantLongTermsAggregate': '_types/aggregations/Aggregate.ts#L742-L744', +'_types.aggregations.SignificantLongTermsBucket': '_types/aggregations/Aggregate.ts#L751-L754', +'_types.aggregations.SignificantStringTermsAggregate': '_types/aggregations/Aggregate.ts#L756-L758', +'_types.aggregations.SignificantStringTermsBucket': '_types/aggregations/Aggregate.ts#L760-L762', +'_types.aggregations.SignificantTermsAggregateBase': '_types/aggregations/Aggregate.ts#L732-L740', '_types.aggregations.SignificantTermsAggregation': '_types/aggregations/bucket.ts#L836-L913', -'_types.aggregations.SignificantTermsBucketBase': '_types/aggregations/Aggregate.ts#L745-L748', +'_types.aggregations.SignificantTermsBucketBase': '_types/aggregations/Aggregate.ts#L746-L749', '_types.aggregations.SignificantTextAggregation': '_types/aggregations/bucket.ts#L915-L990', '_types.aggregations.SimpleMovingAverageAggregation': '_types/aggregations/pipeline.ts#L275-L278', '_types.aggregations.SimpleValueAggregate': '_types/aggregations/Aggregate.ts#L243-L244', -'_types.aggregations.SingleBucketAggregateBase': '_types/aggregations/Aggregate.ts#L587-L597', +'_types.aggregations.SingleBucketAggregateBase': '_types/aggregations/Aggregate.ts#L588-L598', '_types.aggregations.SingleMetricAggregateBase': '_types/aggregations/Aggregate.ts#L190-L199', '_types.aggregations.Spike': '_types/aggregations/Aggregate.ts#L421-L421', '_types.aggregations.StandardDeviationBounds': '_types/aggregations/Aggregate.ts#L286-L293', @@ -615,12 +615,12 @@ '_types.aggregations.StatsBucketAggregate': '_types/aggregations/Aggregate.ts#L280-L284', '_types.aggregations.StatsBucketAggregation': '_types/aggregations/pipeline.ts#L412-L412', '_types.aggregations.StepChange': '_types/aggregations/Aggregate.ts#L423-L423', -'_types.aggregations.StringRareTermsAggregate': '_types/aggregations/Aggregate.ts#L554-L558', -'_types.aggregations.StringRareTermsBucket': '_types/aggregations/Aggregate.ts#L560-L562', -'_types.aggregations.StringStatsAggregate': '_types/aggregations/Aggregate.ts#L866-L877', +'_types.aggregations.StringRareTermsAggregate': '_types/aggregations/Aggregate.ts#L555-L559', +'_types.aggregations.StringRareTermsBucket': '_types/aggregations/Aggregate.ts#L561-L563', +'_types.aggregations.StringStatsAggregate': '_types/aggregations/Aggregate.ts#L867-L878', '_types.aggregations.StringStatsAggregation': '_types/aggregations/metric.ts#L320-L326', -'_types.aggregations.StringTermsAggregate': '_types/aggregations/Aggregate.ts#L495-L500', -'_types.aggregations.StringTermsBucket': '_types/aggregations/Aggregate.ts#L506-L508', +'_types.aggregations.StringTermsAggregate': '_types/aggregations/Aggregate.ts#L496-L501', +'_types.aggregations.StringTermsBucket': '_types/aggregations/Aggregate.ts#L507-L509', '_types.aggregations.SumAggregate': '_types/aggregations/Aggregate.ts#L216-L221', '_types.aggregations.SumAggregation': '_types/aggregations/metric.ts#L328-L328', '_types.aggregations.SumBucketAggregation': '_types/aggregations/pipeline.ts#L414-L417', @@ -628,53 +628,53 @@ '_types.aggregations.TDigestExecutionHint': '_types/aggregations/metric.ts#L261-L264', '_types.aggregations.TDigestPercentileRanksAggregate': '_types/aggregations/Aggregate.ts#L182-L183', '_types.aggregations.TDigestPercentilesAggregate': '_types/aggregations/Aggregate.ts#L179-L180', -'_types.aggregations.TTestAggregate': '_types/aggregations/Aggregate.ts#L911-L918', +'_types.aggregations.TTestAggregate': '_types/aggregations/Aggregate.ts#L912-L919', '_types.aggregations.TTestAggregation': '_types/aggregations/metric.ts#L330-L344', '_types.aggregations.TTestType': '_types/aggregations/metric.ts#L358-L371', -'_types.aggregations.TermsAggregateBase': '_types/aggregations/Aggregate.ts#L488-L493', +'_types.aggregations.TermsAggregateBase': '_types/aggregations/Aggregate.ts#L489-L494', '_types.aggregations.TermsAggregation': '_types/aggregations/bucket.ts#L992-L1060', '_types.aggregations.TermsAggregationCollectMode': '_types/aggregations/bucket.ts#L1085-L1094', '_types.aggregations.TermsAggregationExecutionHint': '_types/aggregations/bucket.ts#L1096-L1101', -'_types.aggregations.TermsBucketBase': '_types/aggregations/Aggregate.ts#L502-L504', +'_types.aggregations.TermsBucketBase': '_types/aggregations/Aggregate.ts#L503-L505', '_types.aggregations.TermsExclude': '_types/aggregations/bucket.ts#L1106-L1107', '_types.aggregations.TermsInclude': '_types/aggregations/bucket.ts#L1103-L1104', '_types.aggregations.TermsPartition': '_types/aggregations/bucket.ts#L1109-L1118', '_types.aggregations.TestPopulation': '_types/aggregations/metric.ts#L346-L356', -'_types.aggregations.TimeSeriesAggregate': '_types/aggregations/Aggregate.ts#L803-L804', +'_types.aggregations.TimeSeriesAggregate': '_types/aggregations/Aggregate.ts#L804-L805', '_types.aggregations.TimeSeriesAggregation': '_types/aggregations/bucket.ts#L1062-L1075', -'_types.aggregations.TimeSeriesBucket': '_types/aggregations/Aggregate.ts#L806-L808', -'_types.aggregations.TopHitsAggregate': '_types/aggregations/Aggregate.ts#L820-L826', +'_types.aggregations.TimeSeriesBucket': '_types/aggregations/Aggregate.ts#L807-L809', +'_types.aggregations.TopHitsAggregate': '_types/aggregations/Aggregate.ts#L821-L827', '_types.aggregations.TopHitsAggregation': '_types/aggregations/metric.ts#L373-L433', -'_types.aggregations.TopMetrics': '_types/aggregations/Aggregate.ts#L905-L909', -'_types.aggregations.TopMetricsAggregate': '_types/aggregations/Aggregate.ts#L900-L903', +'_types.aggregations.TopMetrics': '_types/aggregations/Aggregate.ts#L906-L910', +'_types.aggregations.TopMetricsAggregate': '_types/aggregations/Aggregate.ts#L901-L904', '_types.aggregations.TopMetricsAggregation': '_types/aggregations/metric.ts#L435-L452', '_types.aggregations.TopMetricsValue': '_types/aggregations/metric.ts#L454-L459', '_types.aggregations.TrendChange': '_types/aggregations/Aggregate.ts#L437-L441', -'_types.aggregations.UnmappedRareTermsAggregate': '_types/aggregations/Aggregate.ts#L564-L570', -'_types.aggregations.UnmappedSamplerAggregate': '_types/aggregations/Aggregate.ts#L632-L633', -'_types.aggregations.UnmappedSignificantTermsAggregate': '_types/aggregations/Aggregate.ts#L763-L769', -'_types.aggregations.UnmappedTermsAggregate': '_types/aggregations/Aggregate.ts#L534-L540', +'_types.aggregations.UnmappedRareTermsAggregate': '_types/aggregations/Aggregate.ts#L565-L571', +'_types.aggregations.UnmappedSamplerAggregate': '_types/aggregations/Aggregate.ts#L633-L634', +'_types.aggregations.UnmappedSignificantTermsAggregate': '_types/aggregations/Aggregate.ts#L764-L770', +'_types.aggregations.UnmappedTermsAggregate': '_types/aggregations/Aggregate.ts#L535-L541', '_types.aggregations.ValueCountAggregate': '_types/aggregations/Aggregate.ts#L236-L241', '_types.aggregations.ValueCountAggregation': '_types/aggregations/metric.ts#L461-L461', '_types.aggregations.ValueType': '_types/aggregations/metric.ts#L463-L474', -'_types.aggregations.VariableWidthHistogramAggregate': '_types/aggregations/Aggregate.ts#L473-L475', +'_types.aggregations.VariableWidthHistogramAggregate': '_types/aggregations/Aggregate.ts#L474-L476', '_types.aggregations.VariableWidthHistogramAggregation': '_types/aggregations/bucket.ts#L1120-L1144', -'_types.aggregations.VariableWidthHistogramBucket': '_types/aggregations/Aggregate.ts#L477-L484', +'_types.aggregations.VariableWidthHistogramBucket': '_types/aggregations/Aggregate.ts#L478-L485', '_types.aggregations.WeightedAverageAggregation': '_types/aggregations/metric.ts#L476-L490', '_types.aggregations.WeightedAverageValue': '_types/aggregations/metric.ts#L492-L502', '_types.aggregations.WeightedAvgAggregate': '_types/aggregations/Aggregate.ts#L229-L234', '_types.analysis.Analyzer': '_types/analysis/analyzers.ts#L427-L480', -'_types.analysis.ApostropheTokenFilter': '_types/analysis/token_filters.ts#L451-L453', +'_types.analysis.ApostropheTokenFilter': '_types/analysis/token_filters.ts#L486-L488', '_types.analysis.ArabicAnalyzer': '_types/analysis/analyzers.ts#L72-L77', -'_types.analysis.ArabicNormalizationTokenFilter': '_types/analysis/token_filters.ts#L455-L457', -'_types.analysis.ArabicStemTokenFilter': '_types/analysis/token_filters.ts#L547-L549', +'_types.analysis.ArabicNormalizationTokenFilter': '_types/analysis/token_filters.ts#L490-L492', +'_types.analysis.ArabicStemTokenFilter': '_types/analysis/token_filters.ts#L584-L586', '_types.analysis.ArmenianAnalyzer': '_types/analysis/analyzers.ts#L79-L84', -'_types.analysis.AsciiFoldingTokenFilter': '_types/analysis/token_filters.ts#L213-L217', +'_types.analysis.AsciiFoldingTokenFilter': '_types/analysis/token_filters.ts#L224-L228', '_types.analysis.BasqueAnalyzer': '_types/analysis/analyzers.ts#L86-L91', '_types.analysis.BengaliAnalyzer': '_types/analysis/analyzers.ts#L93-L98', -'_types.analysis.BengaliNormalizationTokenFilter': '_types/analysis/token_filters.ts#L490-L492', +'_types.analysis.BengaliNormalizationTokenFilter': '_types/analysis/token_filters.ts#L525-L527', '_types.analysis.BrazilianAnalyzer': '_types/analysis/analyzers.ts#L100-L104', -'_types.analysis.BrazilianStemTokenFilter': '_types/analysis/token_filters.ts#L494-L496', +'_types.analysis.BrazilianStemTokenFilter': '_types/analysis/token_filters.ts#L529-L531', '_types.analysis.BulgarianAnalyzer': '_types/analysis/analyzers.ts#L106-L111', '_types.analysis.CatalanAnalyzer': '_types/analysis/analyzers.ts#L113-L118', '_types.analysis.CharFilter': '_types/analysis/char_filters.ts#L28-L33', @@ -683,48 +683,48 @@ '_types.analysis.CharGroupTokenizer': '_types/analysis/tokenizers.ts#L31-L38', '_types.analysis.ChineseAnalyzer': '_types/analysis/analyzers.ts#L120-L124', '_types.analysis.CjkAnalyzer': '_types/analysis/analyzers.ts#L126-L130', -'_types.analysis.CjkBigramIgnoredScript': '_types/analysis/token_filters.ts#L459-L464', -'_types.analysis.CjkBigramTokenFilter': '_types/analysis/token_filters.ts#L466-L472', -'_types.analysis.CjkWidthTokenFilter': '_types/analysis/token_filters.ts#L474-L476', -'_types.analysis.ClassicTokenFilter': '_types/analysis/token_filters.ts#L478-L480', +'_types.analysis.CjkBigramIgnoredScript': '_types/analysis/token_filters.ts#L494-L499', +'_types.analysis.CjkBigramTokenFilter': '_types/analysis/token_filters.ts#L501-L507', +'_types.analysis.CjkWidthTokenFilter': '_types/analysis/token_filters.ts#L509-L511', +'_types.analysis.ClassicTokenFilter': '_types/analysis/token_filters.ts#L513-L515', '_types.analysis.ClassicTokenizer': '_types/analysis/tokenizers.ts#L40-L46', -'_types.analysis.CommonGramsTokenFilter': '_types/analysis/token_filters.ts#L219-L235', -'_types.analysis.CompoundWordTokenFilterBase': '_types/analysis/token_filters.ts#L45-L61', -'_types.analysis.ConditionTokenFilter': '_types/analysis/token_filters.ts#L237-L243', +'_types.analysis.CommonGramsTokenFilter': '_types/analysis/token_filters.ts#L230-L252', +'_types.analysis.CompoundWordTokenFilterBase': '_types/analysis/token_filters.ts#L45-L65', +'_types.analysis.ConditionTokenFilter': '_types/analysis/token_filters.ts#L254-L260', '_types.analysis.CustomAnalyzer': '_types/analysis/analyzers.ts#L28-L35', '_types.analysis.CustomNormalizer': '_types/analysis/normalizers.ts#L30-L34', '_types.analysis.CzechAnalyzer': '_types/analysis/analyzers.ts#L132-L137', -'_types.analysis.CzechStemTokenFilter': '_types/analysis/token_filters.ts#L551-L553', +'_types.analysis.CzechStemTokenFilter': '_types/analysis/token_filters.ts#L588-L590', '_types.analysis.DanishAnalyzer': '_types/analysis/analyzers.ts#L139-L143', -'_types.analysis.DecimalDigitTokenFilter': '_types/analysis/token_filters.ts#L482-L484', -'_types.analysis.DelimitedPayloadEncoding': '_types/analysis/token_filters.ts#L78-L82', -'_types.analysis.DelimitedPayloadTokenFilter': '_types/analysis/token_filters.ts#L84-L90', -'_types.analysis.DictionaryDecompounderTokenFilter': '_types/analysis/token_filters.ts#L63-L65', +'_types.analysis.DecimalDigitTokenFilter': '_types/analysis/token_filters.ts#L517-L519', +'_types.analysis.DelimitedPayloadEncoding': '_types/analysis/token_filters.ts#L84-L88', +'_types.analysis.DelimitedPayloadTokenFilter': '_types/analysis/token_filters.ts#L90-L96', +'_types.analysis.DictionaryDecompounderTokenFilter': '_types/analysis/token_filters.ts#L67-L69', '_types.analysis.DutchAnalyzer': '_types/analysis/analyzers.ts#L145-L150', -'_types.analysis.DutchStemTokenFilter': '_types/analysis/token_filters.ts#L559-L561', -'_types.analysis.EdgeNGramSide': '_types/analysis/token_filters.ts#L92-L95', -'_types.analysis.EdgeNGramTokenFilter': '_types/analysis/token_filters.ts#L97-L107', +'_types.analysis.DutchStemTokenFilter': '_types/analysis/token_filters.ts#L596-L598', +'_types.analysis.EdgeNGramSide': '_types/analysis/token_filters.ts#L98-L101', +'_types.analysis.EdgeNGramTokenFilter': '_types/analysis/token_filters.ts#L103-L113', '_types.analysis.EdgeNGramTokenizer': '_types/analysis/tokenizers.ts#L48-L58', -'_types.analysis.ElisionTokenFilter': '_types/analysis/token_filters.ts#L245-L258', +'_types.analysis.ElisionTokenFilter': '_types/analysis/token_filters.ts#L262-L279', '_types.analysis.EnglishAnalyzer': '_types/analysis/analyzers.ts#L152-L157', '_types.analysis.EstonianAnalyzer': '_types/analysis/analyzers.ts#L159-L163', '_types.analysis.FingerprintAnalyzer': '_types/analysis/analyzers.ts#L37-L64', -'_types.analysis.FingerprintTokenFilter': '_types/analysis/token_filters.ts#L260-L266', +'_types.analysis.FingerprintTokenFilter': '_types/analysis/token_filters.ts#L281-L287', '_types.analysis.FinnishAnalyzer': '_types/analysis/analyzers.ts#L165-L170', -'_types.analysis.FlattenGraphTokenFilter': '_types/analysis/token_filters.ts#L486-L488', +'_types.analysis.FlattenGraphTokenFilter': '_types/analysis/token_filters.ts#L521-L523', '_types.analysis.FrenchAnalyzer': '_types/analysis/analyzers.ts#L172-L177', -'_types.analysis.FrenchStemTokenFilter': '_types/analysis/token_filters.ts#L555-L557', +'_types.analysis.FrenchStemTokenFilter': '_types/analysis/token_filters.ts#L592-L594', '_types.analysis.GalicianAnalyzer': '_types/analysis/analyzers.ts#L179-L184', '_types.analysis.GermanAnalyzer': '_types/analysis/analyzers.ts#L186-L191', -'_types.analysis.GermanNormalizationTokenFilter': '_types/analysis/token_filters.ts#L498-L500', -'_types.analysis.GermanStemTokenFilter': '_types/analysis/token_filters.ts#L563-L565', +'_types.analysis.GermanNormalizationTokenFilter': '_types/analysis/token_filters.ts#L533-L535', +'_types.analysis.GermanStemTokenFilter': '_types/analysis/token_filters.ts#L600-L602', '_types.analysis.GreekAnalyzer': '_types/analysis/analyzers.ts#L193-L197', '_types.analysis.HindiAnalyzer': '_types/analysis/analyzers.ts#L199-L204', -'_types.analysis.HindiNormalizationTokenFilter': '_types/analysis/token_filters.ts#L502-L504', +'_types.analysis.HindiNormalizationTokenFilter': '_types/analysis/token_filters.ts#L537-L539', '_types.analysis.HtmlStripCharFilter': '_types/analysis/char_filters.ts#L46-L49', '_types.analysis.HungarianAnalyzer': '_types/analysis/analyzers.ts#L206-L211', -'_types.analysis.HunspellTokenFilter': '_types/analysis/token_filters.ts#L268-L280', -'_types.analysis.HyphenationDecompounderTokenFilter': '_types/analysis/token_filters.ts#L67-L76', +'_types.analysis.HunspellTokenFilter': '_types/analysis/token_filters.ts#L289-L305', +'_types.analysis.HyphenationDecompounderTokenFilter': '_types/analysis/token_filters.ts#L71-L82', '_types.analysis.IcuAnalyzer': '_types/analysis/icu-plugin.ts#L68-L72', '_types.analysis.IcuCollationAlternate': '_types/analysis/icu-plugin.ts#L90-L93', '_types.analysis.IcuCollationCaseFirst': '_types/analysis/icu-plugin.ts#L95-L98', @@ -739,18 +739,18 @@ '_types.analysis.IcuTokenizer': '_types/analysis/icu-plugin.ts#L30-L33', '_types.analysis.IcuTransformDirection': '_types/analysis/icu-plugin.ts#L74-L77', '_types.analysis.IcuTransformTokenFilter': '_types/analysis/icu-plugin.ts#L24-L28', -'_types.analysis.IndicNormalizationTokenFilter': '_types/analysis/token_filters.ts#L506-L508', +'_types.analysis.IndicNormalizationTokenFilter': '_types/analysis/token_filters.ts#L541-L543', '_types.analysis.IndonesianAnalyzer': '_types/analysis/analyzers.ts#L213-L218', '_types.analysis.IrishAnalyzer': '_types/analysis/analyzers.ts#L220-L225', '_types.analysis.ItalianAnalyzer': '_types/analysis/analyzers.ts#L227-L232', '_types.analysis.JaStopTokenFilter': '_types/analysis/kuromoji-plugin.ts#L32-L35', -'_types.analysis.KStemTokenFilter': '_types/analysis/token_filters.ts#L324-L326', -'_types.analysis.KeepTypesMode': '_types/analysis/token_filters.ts#L282-L285', -'_types.analysis.KeepTypesTokenFilter': '_types/analysis/token_filters.ts#L287-L293', -'_types.analysis.KeepWordsTokenFilter': '_types/analysis/token_filters.ts#L295-L306', +'_types.analysis.KStemTokenFilter': '_types/analysis/token_filters.ts#L359-L361', +'_types.analysis.KeepTypesMode': '_types/analysis/token_filters.ts#L307-L310', +'_types.analysis.KeepTypesTokenFilter': '_types/analysis/token_filters.ts#L312-L318', +'_types.analysis.KeepWordsTokenFilter': '_types/analysis/token_filters.ts#L320-L335', '_types.analysis.KeywordAnalyzer': '_types/analysis/analyzers.ts#L66-L70', -'_types.analysis.KeywordMarkerTokenFilter': '_types/analysis/token_filters.ts#L308-L322', -'_types.analysis.KeywordRepeatTokenFilter': '_types/analysis/token_filters.ts#L510-L512', +'_types.analysis.KeywordMarkerTokenFilter': '_types/analysis/token_filters.ts#L337-L357', +'_types.analysis.KeywordRepeatTokenFilter': '_types/analysis/token_filters.ts#L545-L547', '_types.analysis.KeywordTokenizer': '_types/analysis/tokenizers.ts#L69-L75', '_types.analysis.KuromojiAnalyzer': '_types/analysis/kuromoji-plugin.ts#L26-L30', '_types.analysis.KuromojiIterationMarkCharFilter': '_types/analysis/kuromoji-plugin.ts#L37-L41', @@ -760,18 +760,18 @@ '_types.analysis.KuromojiTokenizationMode': '_types/analysis/kuromoji-plugin.ts#L58-L62', '_types.analysis.KuromojiTokenizer': '_types/analysis/kuromoji-plugin.ts#L64-L73', '_types.analysis.LatvianAnalyzer': '_types/analysis/analyzers.ts#L234-L239', -'_types.analysis.LengthTokenFilter': '_types/analysis/token_filters.ts#L328-L334', +'_types.analysis.LengthTokenFilter': '_types/analysis/token_filters.ts#L363-L369', '_types.analysis.LetterTokenizer': '_types/analysis/tokenizers.ts#L77-L79', -'_types.analysis.LimitTokenCountTokenFilter': '_types/analysis/token_filters.ts#L336-L342', +'_types.analysis.LimitTokenCountTokenFilter': '_types/analysis/token_filters.ts#L371-L377', '_types.analysis.LithuanianAnalyzer': '_types/analysis/analyzers.ts#L241-L246', '_types.analysis.LowercaseNormalizer': '_types/analysis/normalizers.ts#L26-L28', -'_types.analysis.LowercaseTokenFilter': '_types/analysis/token_filters.ts#L350-L354', -'_types.analysis.LowercaseTokenFilterLanguages': '_types/analysis/token_filters.ts#L344-L348', +'_types.analysis.LowercaseTokenFilter': '_types/analysis/token_filters.ts#L385-L389', +'_types.analysis.LowercaseTokenFilterLanguages': '_types/analysis/token_filters.ts#L379-L383', '_types.analysis.LowercaseTokenizer': '_types/analysis/tokenizers.ts#L81-L83', '_types.analysis.MappingCharFilter': '_types/analysis/char_filters.ts#L51-L55', -'_types.analysis.MinHashTokenFilter': '_types/analysis/token_filters.ts#L514-L525', -'_types.analysis.MultiplexerTokenFilter': '_types/analysis/token_filters.ts#L356-L362', -'_types.analysis.NGramTokenFilter': '_types/analysis/token_filters.ts#L364-L372', +'_types.analysis.MinHashTokenFilter': '_types/analysis/token_filters.ts#L549-L562', +'_types.analysis.MultiplexerTokenFilter': '_types/analysis/token_filters.ts#L391-L397', +'_types.analysis.NGramTokenFilter': '_types/analysis/token_filters.ts#L399-L407', '_types.analysis.NGramTokenizer': '_types/analysis/tokenizers.ts#L85-L95', '_types.analysis.NoriAnalyzer': '_types/analysis/analyzers.ts#L323-L330', '_types.analysis.NoriDecompoundMode': '_types/analysis/nori-plugin.ts#L23-L27', @@ -781,71 +781,71 @@ '_types.analysis.NorwegianAnalyzer': '_types/analysis/analyzers.ts#L248-L253', '_types.analysis.PathHierarchyTokenizer': '_types/analysis/tokenizers.ts#L97-L104', '_types.analysis.PatternAnalyzer': '_types/analysis/analyzers.ts#L332-L365', -'_types.analysis.PatternCaptureTokenFilter': '_types/analysis/token_filters.ts#L374-L380', +'_types.analysis.PatternCaptureTokenFilter': '_types/analysis/token_filters.ts#L409-L415', '_types.analysis.PatternReplaceCharFilter': '_types/analysis/char_filters.ts#L57-L62', -'_types.analysis.PatternReplaceTokenFilter': '_types/analysis/token_filters.ts#L382-L391', +'_types.analysis.PatternReplaceTokenFilter': '_types/analysis/token_filters.ts#L417-L426', '_types.analysis.PatternTokenizer': '_types/analysis/tokenizers.ts#L106-L111', '_types.analysis.PersianAnalyzer': '_types/analysis/analyzers.ts#L255-L259', -'_types.analysis.PersianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L527-L529', -'_types.analysis.PersianStemTokenFilter': '_types/analysis/token_filters.ts#L571-L573', +'_types.analysis.PersianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L564-L566', +'_types.analysis.PersianStemTokenFilter': '_types/analysis/token_filters.ts#L608-L610', '_types.analysis.PhoneticEncoder': '_types/analysis/phonetic-plugin.ts#L23-L36', '_types.analysis.PhoneticLanguage': '_types/analysis/phonetic-plugin.ts#L38-L51', '_types.analysis.PhoneticNameType': '_types/analysis/phonetic-plugin.ts#L53-L57', '_types.analysis.PhoneticRuleType': '_types/analysis/phonetic-plugin.ts#L59-L62', '_types.analysis.PhoneticTokenFilter': '_types/analysis/phonetic-plugin.ts#L64-L72', -'_types.analysis.PorterStemTokenFilter': '_types/analysis/token_filters.ts#L393-L395', +'_types.analysis.PorterStemTokenFilter': '_types/analysis/token_filters.ts#L428-L430', '_types.analysis.PortugueseAnalyzer': '_types/analysis/analyzers.ts#L261-L266', -'_types.analysis.PredicateTokenFilter': '_types/analysis/token_filters.ts#L397-L401', -'_types.analysis.RemoveDuplicatesTokenFilter': '_types/analysis/token_filters.ts#L403-L405', -'_types.analysis.ReverseTokenFilter': '_types/analysis/token_filters.ts#L407-L409', +'_types.analysis.PredicateTokenFilter': '_types/analysis/token_filters.ts#L432-L436', +'_types.analysis.RemoveDuplicatesTokenFilter': '_types/analysis/token_filters.ts#L438-L440', +'_types.analysis.ReverseTokenFilter': '_types/analysis/token_filters.ts#L442-L444', '_types.analysis.RomanianAnalyzer': '_types/analysis/analyzers.ts#L268-L273', '_types.analysis.RussianAnalyzer': '_types/analysis/analyzers.ts#L275-L280', -'_types.analysis.RussianStemTokenFilter': '_types/analysis/token_filters.ts#L567-L569', -'_types.analysis.ScandinavianFoldingTokenFilter': '_types/analysis/token_filters.ts#L531-L533', -'_types.analysis.ScandinavianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L535-L537', +'_types.analysis.RussianStemTokenFilter': '_types/analysis/token_filters.ts#L604-L606', +'_types.analysis.ScandinavianFoldingTokenFilter': '_types/analysis/token_filters.ts#L568-L570', +'_types.analysis.ScandinavianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L572-L574', '_types.analysis.SerbianAnalyzer': '_types/analysis/analyzers.ts#L282-L287', -'_types.analysis.SerbianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L539-L541', -'_types.analysis.ShingleTokenFilter': '_types/analysis/token_filters.ts#L109-L123', +'_types.analysis.SerbianNormalizationTokenFilter': '_types/analysis/token_filters.ts#L576-L578', +'_types.analysis.ShingleTokenFilter': '_types/analysis/token_filters.ts#L115-L129', '_types.analysis.SimpleAnalyzer': '_types/analysis/analyzers.ts#L367-L371', '_types.analysis.SimplePatternSplitTokenizer': '_types/analysis/tokenizers.ts#L118-L121', '_types.analysis.SimplePatternTokenizer': '_types/analysis/tokenizers.ts#L113-L116', '_types.analysis.SnowballAnalyzer': '_types/analysis/analyzers.ts#L374-L380', '_types.analysis.SnowballLanguage': '_types/analysis/languages.ts#L20-L48', -'_types.analysis.SnowballTokenFilter': '_types/analysis/token_filters.ts#L411-L415', +'_types.analysis.SnowballTokenFilter': '_types/analysis/token_filters.ts#L446-L450', '_types.analysis.SoraniAnalyzer': '_types/analysis/analyzers.ts#L289-L294', -'_types.analysis.SoraniNormalizationTokenFilter': '_types/analysis/token_filters.ts#L543-L545', +'_types.analysis.SoraniNormalizationTokenFilter': '_types/analysis/token_filters.ts#L580-L582', '_types.analysis.SpanishAnalyzer': '_types/analysis/analyzers.ts#L296-L301', '_types.analysis.StandardAnalyzer': '_types/analysis/analyzers.ts#L382-L402', '_types.analysis.StandardTokenizer': '_types/analysis/tokenizers.ts#L123-L126', -'_types.analysis.StemmerOverrideTokenFilter': '_types/analysis/token_filters.ts#L417-L423', -'_types.analysis.StemmerTokenFilter': '_types/analysis/token_filters.ts#L425-L429', +'_types.analysis.StemmerOverrideTokenFilter': '_types/analysis/token_filters.ts#L452-L458', +'_types.analysis.StemmerTokenFilter': '_types/analysis/token_filters.ts#L460-L464', '_types.analysis.StopAnalyzer': '_types/analysis/analyzers.ts#L404-L419', -'_types.analysis.StopTokenFilter': '_types/analysis/token_filters.ts#L125-L136', +'_types.analysis.StopTokenFilter': '_types/analysis/token_filters.ts#L131-L144', '_types.analysis.SwedishAnalyzer': '_types/analysis/analyzers.ts#L303-L308', -'_types.analysis.SynonymFormat': '_types/analysis/token_filters.ts#L138-L141', -'_types.analysis.SynonymGraphTokenFilter': '_types/analysis/token_filters.ts#L163-L165', -'_types.analysis.SynonymTokenFilter': '_types/analysis/token_filters.ts#L167-L169', -'_types.analysis.SynonymTokenFilterBase': '_types/analysis/token_filters.ts#L143-L161', +'_types.analysis.SynonymFormat': '_types/analysis/token_filters.ts#L146-L149', +'_types.analysis.SynonymGraphTokenFilter': '_types/analysis/token_filters.ts#L172-L174', +'_types.analysis.SynonymTokenFilter': '_types/analysis/token_filters.ts#L176-L178', +'_types.analysis.SynonymTokenFilterBase': '_types/analysis/token_filters.ts#L151-L170', '_types.analysis.ThaiAnalyzer': '_types/analysis/analyzers.ts#L317-L321', '_types.analysis.ThaiTokenizer': '_types/analysis/tokenizers.ts#L128-L130', '_types.analysis.TokenChar': '_types/analysis/tokenizers.ts#L60-L67', -'_types.analysis.TokenFilter': '_types/analysis/token_filters.ts#L575-L580', +'_types.analysis.TokenFilter': '_types/analysis/token_filters.ts#L612-L617', '_types.analysis.TokenFilterBase': '_types/analysis/token_filters.ts#L41-L43', -'_types.analysis.TokenFilterDefinition': '_types/analysis/token_filters.ts#L582-L660', +'_types.analysis.TokenFilterDefinition': '_types/analysis/token_filters.ts#L619-L697', '_types.analysis.Tokenizer': '_types/analysis/tokenizers.ts#L142-L147', '_types.analysis.TokenizerBase': '_types/analysis/tokenizers.ts#L27-L29', '_types.analysis.TokenizerDefinition': '_types/analysis/tokenizers.ts#L149-L172', -'_types.analysis.TrimTokenFilter': '_types/analysis/token_filters.ts#L431-L433', -'_types.analysis.TruncateTokenFilter': '_types/analysis/token_filters.ts#L435-L439', +'_types.analysis.TrimTokenFilter': '_types/analysis/token_filters.ts#L466-L468', +'_types.analysis.TruncateTokenFilter': '_types/analysis/token_filters.ts#L470-L474', '_types.analysis.TurkishAnalyzer': '_types/analysis/analyzers.ts#L310-L315', '_types.analysis.UaxEmailUrlTokenizer': '_types/analysis/tokenizers.ts#L132-L135', -'_types.analysis.UniqueTokenFilter': '_types/analysis/token_filters.ts#L441-L445', -'_types.analysis.UppercaseTokenFilter': '_types/analysis/token_filters.ts#L447-L449', +'_types.analysis.UniqueTokenFilter': '_types/analysis/token_filters.ts#L476-L480', +'_types.analysis.UppercaseTokenFilter': '_types/analysis/token_filters.ts#L482-L484', '_types.analysis.WhitespaceAnalyzer': '_types/analysis/analyzers.ts#L421-L425', '_types.analysis.WhitespaceTokenizer': '_types/analysis/tokenizers.ts#L137-L140', -'_types.analysis.WordDelimiterGraphTokenFilter': '_types/analysis/token_filters.ts#L205-L211', -'_types.analysis.WordDelimiterTokenFilter': '_types/analysis/token_filters.ts#L201-L203', -'_types.analysis.WordDelimiterTokenFilterBase': '_types/analysis/token_filters.ts#L171-L199', +'_types.analysis.WordDelimiterGraphTokenFilter': '_types/analysis/token_filters.ts#L216-L222', +'_types.analysis.WordDelimiterTokenFilter': '_types/analysis/token_filters.ts#L212-L214', +'_types.analysis.WordDelimiterTokenFilterBase': '_types/analysis/token_filters.ts#L180-L210', '_types.mapping.AggregateMetricDoubleProperty': '_types/mapping/complex.ts#L60-L66', '_types.mapping.AllField': '_types/mapping/meta-fields.ts#L29-L40', '_types.mapping.BinaryProperty': '_types/mapping/core.ts#L57-L59', @@ -855,9 +855,9 @@ '_types.mapping.ChunkingSettings': '_types/mapping/ChunkingSettings.ts#L24-L36', '_types.mapping.CompletionProperty': '_types/mapping/specialized.ts#L33-L41', '_types.mapping.CompositeSubField': '_types/mapping/RuntimeFields.ts#L52-L54', -'_types.mapping.ConstantKeywordProperty': '_types/mapping/specialized.ts#L50-L53', +'_types.mapping.ConstantKeywordProperty': '_types/mapping/specialized.ts#L51-L54', '_types.mapping.CorePropertyBase': '_types/mapping/core.ts#L48-L51', -'_types.mapping.CountedKeywordProperty': '_types/mapping/specialized.ts#L55-L62', +'_types.mapping.CountedKeywordProperty': '_types/mapping/specialized.ts#L56-L63', '_types.mapping.DataStreamTimestamp': '_types/mapping/TypeMapping.ts#L59-L61', '_types.mapping.DateNanosProperty': '_types/mapping/core.ts#L92-L102', '_types.mapping.DateProperty': '_types/mapping/core.ts#L78-L90', @@ -874,7 +874,7 @@ '_types.mapping.DynamicMapping': '_types/mapping/dynamic-template.ts#L50-L59', '_types.mapping.DynamicProperty': '_types/mapping/core.ts#L366-L397', '_types.mapping.DynamicTemplate': '_types/mapping/dynamic-template.ts#L23-L43', -'_types.mapping.FieldAliasProperty': '_types/mapping/specialized.ts#L64-L67', +'_types.mapping.FieldAliasProperty': '_types/mapping/specialized.ts#L65-L68', '_types.mapping.FieldMapping': '_types/mapping/meta-fields.ts#L24-L27', '_types.mapping.FieldNamesField': '_types/mapping/meta-fields.ts#L42-L44', '_types.mapping.FieldType': '_types/mapping/Property.ts#L193-L242', @@ -887,13 +887,13 @@ '_types.mapping.GeoShapeProperty': '_types/mapping/geo.ts#L48-L62', '_types.mapping.GeoStrategy': '_types/mapping/geo.ts#L64-L67', '_types.mapping.HalfFloatNumberProperty': '_types/mapping/core.ts#L163-L166', -'_types.mapping.HistogramProperty': '_types/mapping/specialized.ts#L69-L72', -'_types.mapping.IcuCollationProperty': '_types/mapping/specialized.ts#L103-L127', +'_types.mapping.HistogramProperty': '_types/mapping/specialized.ts#L70-L73', +'_types.mapping.IcuCollationProperty': '_types/mapping/specialized.ts#L104-L128', '_types.mapping.IndexField': '_types/mapping/meta-fields.ts#L46-L48', '_types.mapping.IndexOptions': '_types/mapping/core.ts#L322-L327', '_types.mapping.IntegerNumberProperty': '_types/mapping/core.ts#L173-L176', '_types.mapping.IntegerRangeProperty': '_types/mapping/range.ts#L42-L44', -'_types.mapping.IpProperty': '_types/mapping/specialized.ts#L74-L88', +'_types.mapping.IpProperty': '_types/mapping/specialized.ts#L75-L89', '_types.mapping.IpRangeProperty': '_types/mapping/range.ts#L46-L48', '_types.mapping.JoinProperty': '_types/mapping/core.ts#L104-L108', '_types.mapping.KeywordProperty': '_types/mapping/core.ts#L110-L129', @@ -901,7 +901,7 @@ '_types.mapping.LongRangeProperty': '_types/mapping/range.ts#L50-L52', '_types.mapping.MatchOnlyTextProperty': '_types/mapping/core.ts#L295-L320', '_types.mapping.MatchType': '_types/mapping/dynamic-template.ts#L45-L48', -'_types.mapping.Murmur3HashProperty': '_types/mapping/specialized.ts#L90-L92', +'_types.mapping.Murmur3HashProperty': '_types/mapping/specialized.ts#L91-L93', '_types.mapping.NestedProperty': '_types/mapping/complex.ts#L40-L45', '_types.mapping.NumberPropertyBase': '_types/mapping/core.ts#L131-L151', '_types.mapping.ObjectProperty': '_types/mapping/complex.ts#L47-L51', @@ -932,13 +932,13 @@ '_types.mapping.SparseVectorIndexOptions': '_types/mapping/SparseVectorIndexOptions.ts#L22-L42', '_types.mapping.SparseVectorProperty': '_types/mapping/core.ts#L227-L237', '_types.mapping.Subobjects': '_types/mapping/TypeMapping.ts#L63-L74', -'_types.mapping.SuggestContext': '_types/mapping/specialized.ts#L43-L48', +'_types.mapping.SuggestContext': '_types/mapping/specialized.ts#L43-L49', '_types.mapping.SyntheticSourceKeepEnum': '_types/mapping/Property.ts#L100-L118', '_types.mapping.TermVectorOption': '_types/mapping/TermVectorOption.ts#L20-L28', '_types.mapping.TextIndexPrefixes': '_types/mapping/core.ts#L329-L332', '_types.mapping.TextProperty': '_types/mapping/core.ts#L334-L351', '_types.mapping.TimeSeriesMetricType': '_types/mapping/TimeSeriesMetricType.ts#L20-L26', -'_types.mapping.TokenCountProperty': '_types/mapping/specialized.ts#L94-L101', +'_types.mapping.TokenCountProperty': '_types/mapping/specialized.ts#L95-L102', '_types.mapping.TypeMapping': '_types/mapping/TypeMapping.ts#L34-L57', '_types.mapping.UnsignedLongNumberProperty': '_types/mapping/core.ts#L193-L196', '_types.mapping.VersionProperty': '_types/mapping/core.ts#L353-L355', @@ -951,27 +951,27 @@ '_types.query_dsl.CombinedFieldsZeroTerms': '_types/query_dsl/abstractions.ts#L524-L533', '_types.query_dsl.CommonTermsQuery': '_types/query_dsl/fulltext.ts#L34-L44', '_types.query_dsl.ConstantScoreQuery': '_types/query_dsl/compound.ts#L76-L86', -'_types.query_dsl.DateDecayFunction': '_types/query_dsl/compound.ts#L209-L209', +'_types.query_dsl.DateDecayFunction': '_types/query_dsl/compound.ts#L211-L211', '_types.query_dsl.DateDistanceFeatureQuery': '_types/query_dsl/specialized.ts#L71-L74', -'_types.query_dsl.DateRangeQuery': '_types/query_dsl/term.ts#L157-L166', -'_types.query_dsl.DecayFunction': '_types/query_dsl/compound.ts#L215-L224', -'_types.query_dsl.DecayFunctionBase': '_types/query_dsl/compound.ts#L191-L202', -'_types.query_dsl.DecayPlacement': '_types/query_dsl/compound.ts#L170-L189', +'_types.query_dsl.DateRangeQuery': '_types/query_dsl/term.ts#L158-L167', +'_types.query_dsl.DecayFunction': '_types/query_dsl/compound.ts#L217-L226', +'_types.query_dsl.DecayFunctionBase': '_types/query_dsl/compound.ts#L193-L204', +'_types.query_dsl.DecayPlacement': '_types/query_dsl/compound.ts#L172-L191', '_types.query_dsl.DisMaxQuery': '_types/query_dsl/compound.ts#L88-L103', '_types.query_dsl.DistanceFeatureQuery': '_types/query_dsl/specialized.ts#L76-L85', '_types.query_dsl.DistanceFeatureQueryBase': '_types/query_dsl/specialized.ts#L39-L59', '_types.query_dsl.ExistsQuery': '_types/query_dsl/term.ts#L38-L46', '_types.query_dsl.FieldAndFormat': '_types/query_dsl/abstractions.ts#L535-L549', '_types.query_dsl.FieldLookup': '_types/query_dsl/abstractions.ts#L436-L453', -'_types.query_dsl.FieldValueFactorModifier': '_types/query_dsl/compound.ts#L323-L366', -'_types.query_dsl.FieldValueFactorScoreFunction': '_types/query_dsl/compound.ts#L149-L168', -'_types.query_dsl.FunctionBoostMode': '_types/query_dsl/compound.ts#L295-L321', -'_types.query_dsl.FunctionScoreContainer': '_types/query_dsl/compound.ts#L226-L266', -'_types.query_dsl.FunctionScoreMode': '_types/query_dsl/compound.ts#L268-L293', -'_types.query_dsl.FunctionScoreQuery': '_types/query_dsl/compound.ts#L105-L135', -'_types.query_dsl.FuzzyQuery': '_types/query_dsl/term.ts#L48-L86', +'_types.query_dsl.FieldValueFactorModifier': '_types/query_dsl/compound.ts#L325-L368', +'_types.query_dsl.FieldValueFactorScoreFunction': '_types/query_dsl/compound.ts#L151-L170', +'_types.query_dsl.FunctionBoostMode': '_types/query_dsl/compound.ts#L297-L323', +'_types.query_dsl.FunctionScoreContainer': '_types/query_dsl/compound.ts#L228-L268', +'_types.query_dsl.FunctionScoreMode': '_types/query_dsl/compound.ts#L270-L295', +'_types.query_dsl.FunctionScoreQuery': '_types/query_dsl/compound.ts#L105-L136', +'_types.query_dsl.FuzzyQuery': '_types/query_dsl/term.ts#L48-L87', '_types.query_dsl.GeoBoundingBoxQuery': '_types/query_dsl/geo.ts#L35-L57', -'_types.query_dsl.GeoDecayFunction': '_types/query_dsl/compound.ts#L210-L213', +'_types.query_dsl.GeoDecayFunction': '_types/query_dsl/compound.ts#L212-L215', '_types.query_dsl.GeoDistanceFeatureQuery': '_types/query_dsl/specialized.ts#L66-L69', '_types.query_dsl.GeoDistanceQuery': '_types/query_dsl/geo.ts#L64-L96', '_types.query_dsl.GeoExecution': '_types/query_dsl/geo.ts#L59-L62', @@ -983,7 +983,7 @@ '_types.query_dsl.GeoValidationMethod': '_types/query_dsl/geo.ts#L173-L183', '_types.query_dsl.HasChildQuery': '_types/query_dsl/joining.ts#L41-L79', '_types.query_dsl.HasParentQuery': '_types/query_dsl/joining.ts#L81-L110', -'_types.query_dsl.IdsQuery': '_types/query_dsl/term.ts#L88-L96', +'_types.query_dsl.IdsQuery': '_types/query_dsl/term.ts#L89-L97', '_types.query_dsl.IntervalsAllOf': '_types/query_dsl/fulltext.ts#L50-L70', '_types.query_dsl.IntervalsAnyOf': '_types/query_dsl/fulltext.ts#L72-L81', '_types.query_dsl.IntervalsContainer': '_types/query_dsl/fulltext.ts#L83-L112', @@ -998,46 +998,46 @@ '_types.query_dsl.Like': '_types/query_dsl/specialized.ts#L198-L203', '_types.query_dsl.LikeDocument': '_types/query_dsl/specialized.ts#L174-L196', '_types.query_dsl.MatchAllQuery': '_types/query_dsl/MatchAllQuery.ts#L22-L25', -'_types.query_dsl.MatchBoolPrefixQuery': '_types/query_dsl/fulltext.ts#L406-L463', +'_types.query_dsl.MatchBoolPrefixQuery': '_types/query_dsl/fulltext.ts#L407-L464', '_types.query_dsl.MatchNoneQuery': '_types/query_dsl/MatchNoneQuery.ts#L22-L25', -'_types.query_dsl.MatchPhrasePrefixQuery': '_types/query_dsl/fulltext.ts#L491-L520', -'_types.query_dsl.MatchPhraseQuery': '_types/query_dsl/fulltext.ts#L465-L489', -'_types.query_dsl.MatchQuery': '_types/query_dsl/fulltext.ts#L336-L404', +'_types.query_dsl.MatchPhrasePrefixQuery': '_types/query_dsl/fulltext.ts#L492-L521', +'_types.query_dsl.MatchPhraseQuery': '_types/query_dsl/fulltext.ts#L466-L490', +'_types.query_dsl.MatchQuery': '_types/query_dsl/fulltext.ts#L336-L405', '_types.query_dsl.MoreLikeThisQuery': '_types/query_dsl/specialized.ts#L87-L172', -'_types.query_dsl.MultiMatchQuery': '_types/query_dsl/fulltext.ts#L522-L608', -'_types.query_dsl.MultiValueMode': '_types/query_dsl/compound.ts#L368-L385', +'_types.query_dsl.MultiMatchQuery': '_types/query_dsl/fulltext.ts#L523-L609', +'_types.query_dsl.MultiValueMode': '_types/query_dsl/compound.ts#L370-L387', '_types.query_dsl.NestedQuery': '_types/query_dsl/joining.ts#L112-L139', -'_types.query_dsl.NumberRangeQuery': '_types/query_dsl/term.ts#L168-L168', -'_types.query_dsl.NumericDecayFunction': '_types/query_dsl/compound.ts#L208-L208', +'_types.query_dsl.NumberRangeQuery': '_types/query_dsl/term.ts#L169-L169', +'_types.query_dsl.NumericDecayFunction': '_types/query_dsl/compound.ts#L210-L210', '_types.query_dsl.Operator': '_types/query_dsl/Operator.ts#L22-L27', '_types.query_dsl.ParentIdQuery': '_types/query_dsl/joining.ts#L141-L158', '_types.query_dsl.PercolateQuery': '_types/query_dsl/specialized.ts#L205-L245', '_types.query_dsl.PinnedDoc': '_types/query_dsl/specialized.ts#L269-L278', '_types.query_dsl.PinnedQuery': '_types/query_dsl/specialized.ts#L247-L267', -'_types.query_dsl.PrefixQuery': '_types/query_dsl/term.ts#L98-L120', +'_types.query_dsl.PrefixQuery': '_types/query_dsl/term.ts#L99-L121', '_types.query_dsl.QueryBase': '_types/query_dsl/abstractions.ts#L459-L470', '_types.query_dsl.QueryContainer': '_types/query_dsl/abstractions.ts#L103-L434', -'_types.query_dsl.QueryStringQuery': '_types/query_dsl/fulltext.ts#L649-L772', -'_types.query_dsl.RandomScoreFunction': '_types/query_dsl/compound.ts#L144-L147', -'_types.query_dsl.RangeQuery': '_types/query_dsl/term.ts#L172-L182', -'_types.query_dsl.RangeQueryBase': '_types/query_dsl/term.ts#L122-L144', -'_types.query_dsl.RangeRelation': '_types/query_dsl/term.ts#L184-L197', +'_types.query_dsl.QueryStringQuery': '_types/query_dsl/fulltext.ts#L650-L773', +'_types.query_dsl.RandomScoreFunction': '_types/query_dsl/compound.ts#L145-L149', +'_types.query_dsl.RangeQuery': '_types/query_dsl/term.ts#L173-L183', +'_types.query_dsl.RangeQueryBase': '_types/query_dsl/term.ts#L123-L145', +'_types.query_dsl.RangeRelation': '_types/query_dsl/term.ts#L185-L198', '_types.query_dsl.RankFeatureFunction': '_types/query_dsl/specialized.ts#L280-L280', '_types.query_dsl.RankFeatureFunctionLinear': '_types/query_dsl/specialized.ts#L282-L282', '_types.query_dsl.RankFeatureFunctionLogarithm': '_types/query_dsl/specialized.ts#L284-L289', '_types.query_dsl.RankFeatureFunctionSaturation': '_types/query_dsl/specialized.ts#L291-L296', '_types.query_dsl.RankFeatureFunctionSigmoid': '_types/query_dsl/specialized.ts#L298-L307', '_types.query_dsl.RankFeatureQuery': '_types/query_dsl/specialized.ts#L309-L335', -'_types.query_dsl.RegexpQuery': '_types/query_dsl/term.ts#L199-L232', +'_types.query_dsl.RegexpQuery': '_types/query_dsl/term.ts#L200-L233', '_types.query_dsl.RuleQuery': '_types/query_dsl/specialized.ts#L398-L406', '_types.query_dsl.ScriptQuery': '_types/query_dsl/specialized.ts#L337-L346', -'_types.query_dsl.ScriptScoreFunction': '_types/query_dsl/compound.ts#L137-L142', +'_types.query_dsl.ScriptScoreFunction': '_types/query_dsl/compound.ts#L138-L143', '_types.query_dsl.ScriptScoreQuery': '_types/query_dsl/specialized.ts#L348-L365', '_types.query_dsl.SemanticQuery': '_types/query_dsl/SemanticQuery.ts#L22-L30', '_types.query_dsl.ShapeFieldQuery': '_types/query_dsl/specialized.ts#L383-L396', '_types.query_dsl.ShapeQuery': '_types/query_dsl/specialized.ts#L367-L381', -'_types.query_dsl.SimpleQueryStringFlag': '_types/query_dsl/fulltext.ts#L780-L835', -'_types.query_dsl.SimpleQueryStringQuery': '_types/query_dsl/fulltext.ts#L837-L905', +'_types.query_dsl.SimpleQueryStringFlag': '_types/query_dsl/fulltext.ts#L781-L836', +'_types.query_dsl.SimpleQueryStringQuery': '_types/query_dsl/fulltext.ts#L838-L906', '_types.query_dsl.SpanContainingQuery': '_types/query_dsl/span.ts#L25-L39', '_types.query_dsl.SpanFieldMaskingQuery': '_types/query_dsl/span.ts#L41-L47', '_types.query_dsl.SpanFirstQuery': '_types/query_dsl/span.ts#L49-L61', @@ -1049,186 +1049,186 @@ '_types.query_dsl.SpanTermQuery': '_types/query_dsl/span.ts#L134-L141', '_types.query_dsl.SpanWithinQuery': '_types/query_dsl/span.ts#L143-L157', '_types.query_dsl.SparseVectorQuery': '_types/query_dsl/SparseVectorQuery.ts#L26-L80', -'_types.query_dsl.TermQuery': '_types/query_dsl/term.ts#L234-L251', -'_types.query_dsl.TermRangeQuery': '_types/query_dsl/term.ts#L170-L170', -'_types.query_dsl.TermsLookup': '_types/query_dsl/term.ts#L266-L271', -'_types.query_dsl.TermsQuery': '_types/query_dsl/term.ts#L253-L259', -'_types.query_dsl.TermsQueryField': '_types/query_dsl/term.ts#L261-L264', -'_types.query_dsl.TermsSetQuery': '_types/query_dsl/term.ts#L273-L295', -'_types.query_dsl.TextExpansionQuery': '_types/query_dsl/TextExpansionQuery.ts#L23-L36', -'_types.query_dsl.TextQueryType': '_types/query_dsl/fulltext.ts#L610-L636', -'_types.query_dsl.TypeQuery': '_types/query_dsl/term.ts#L297-L299', -'_types.query_dsl.UntypedDecayFunction': '_types/query_dsl/compound.ts#L204-L207', +'_types.query_dsl.TermQuery': '_types/query_dsl/term.ts#L235-L252', +'_types.query_dsl.TermRangeQuery': '_types/query_dsl/term.ts#L171-L171', +'_types.query_dsl.TermsLookup': '_types/query_dsl/term.ts#L267-L272', +'_types.query_dsl.TermsQuery': '_types/query_dsl/term.ts#L254-L260', +'_types.query_dsl.TermsQueryField': '_types/query_dsl/term.ts#L262-L265', +'_types.query_dsl.TermsSetQuery': '_types/query_dsl/term.ts#L274-L296', +'_types.query_dsl.TextExpansionQuery': '_types/query_dsl/TextExpansionQuery.ts#L23-L37', +'_types.query_dsl.TextQueryType': '_types/query_dsl/fulltext.ts#L611-L637', +'_types.query_dsl.TypeQuery': '_types/query_dsl/term.ts#L298-L300', +'_types.query_dsl.UntypedDecayFunction': '_types/query_dsl/compound.ts#L206-L209', '_types.query_dsl.UntypedDistanceFeatureQuery': '_types/query_dsl/specialized.ts#L61-L64', -'_types.query_dsl.UntypedRangeQuery': '_types/query_dsl/term.ts#L146-L155', +'_types.query_dsl.UntypedRangeQuery': '_types/query_dsl/term.ts#L147-L156', '_types.query_dsl.WeightedTokensQuery': '_types/query_dsl/WeightedTokensQuery.ts#L25-L33', -'_types.query_dsl.WildcardQuery': '_types/query_dsl/term.ts#L301-L321', +'_types.query_dsl.WildcardQuery': '_types/query_dsl/term.ts#L302-L322', '_types.query_dsl.WrapperQuery': '_types/query_dsl/abstractions.ts#L508-L517', -'_types.query_dsl.ZeroTermsQuery': '_types/query_dsl/fulltext.ts#L638-L647', +'_types.query_dsl.ZeroTermsQuery': '_types/query_dsl/fulltext.ts#L639-L648', 'async_search._types.AsyncSearch': 'async_search/_types/AsyncSearch.ts#L30-L56', 'async_search._types.AsyncSearchDocumentResponseBase': 'async_search/_types/AsyncSearchResponseBase.ts#L54-L58', 'async_search._types.AsyncSearchResponseBase': 'async_search/_types/AsyncSearchResponseBase.ts#L25-L53', -'async_search.delete.Request': 'async_search/delete/AsyncSearchDeleteRequest.ts#L23-L46', +'async_search.delete.Request': 'async_search/delete/AsyncSearchDeleteRequest.ts#L23-L47', 'async_search.delete.Response': 'async_search/delete/AsyncSearchDeleteResponse.ts#L22-L25', -'async_search.get.Request': 'async_search/get/AsyncSearchGetRequest.ts#L24-L63', +'async_search.get.Request': 'async_search/get/AsyncSearchGetRequest.ts#L24-L67', 'async_search.get.Response': 'async_search/get/AsyncSearchGetResponse.ts#L25-L34', -'async_search.status.Request': 'async_search/status/AsyncSearchStatusRequest.ts#L24-L58', +'async_search.status.Request': 'async_search/status/AsyncSearchStatusRequest.ts#L24-L59', 'async_search.status.Response': 'async_search/status/AsyncSearchStatusResponse.ts#L39-L42', 'async_search.status.StatusResponseBase': 'async_search/status/AsyncSearchStatusResponse.ts#L24-L38', -'async_search.submit.Request': 'async_search/submit/AsyncSearchSubmitRequest.ts#L55-L325', +'async_search.submit.Request': 'async_search/submit/AsyncSearchSubmitRequest.ts#L56-L432', 'async_search.submit.Response': 'async_search/submit/AsyncSearchSubmitResponse.ts#L25-L34', 'autoscaling._types.AutoscalingPolicy': 'autoscaling/_types/AutoscalingPolicy.ts#L23-L30', -'autoscaling.delete_autoscaling_policy.Request': 'autoscaling/delete_autoscaling_policy/DeleteAutoscalingPolicyRequest.ts#L24-L54', +'autoscaling.delete_autoscaling_policy.Request': 'autoscaling/delete_autoscaling_policy/DeleteAutoscalingPolicyRequest.ts#L24-L56', 'autoscaling.delete_autoscaling_policy.Response': 'autoscaling/delete_autoscaling_policy/DeleteAutoscalingPolicyResponse.ts#L22-L25', 'autoscaling.get_autoscaling_capacity.AutoscalingCapacity': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L38-L41', 'autoscaling.get_autoscaling_capacity.AutoscalingDecider': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L52-L56', 'autoscaling.get_autoscaling_capacity.AutoscalingDeciders': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L31-L36', 'autoscaling.get_autoscaling_capacity.AutoscalingNode': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L48-L50', 'autoscaling.get_autoscaling_capacity.AutoscalingResources': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L43-L46', -'autoscaling.get_autoscaling_capacity.Request': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityRequest.ts#L23-L57', +'autoscaling.get_autoscaling_capacity.Request': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityRequest.ts#L24-L59', 'autoscaling.get_autoscaling_capacity.Response': 'autoscaling/get_autoscaling_capacity/GetAutoscalingCapacityResponse.ts#L25-L29', -'autoscaling.get_autoscaling_policy.Request': 'autoscaling/get_autoscaling_policy/GetAutoscalingPolicyRequest.ts#L24-L50', +'autoscaling.get_autoscaling_policy.Request': 'autoscaling/get_autoscaling_policy/GetAutoscalingPolicyRequest.ts#L24-L52', 'autoscaling.get_autoscaling_policy.Response': 'autoscaling/get_autoscaling_policy/GetAutoscalingPolicyResponse.ts#L22-L25', -'autoscaling.put_autoscaling_policy.Request': 'autoscaling/put_autoscaling_policy/PutAutoscalingPolicyRequest.ts#L25-L57', +'autoscaling.put_autoscaling_policy.Request': 'autoscaling/put_autoscaling_policy/PutAutoscalingPolicyRequest.ts#L25-L60', 'autoscaling.put_autoscaling_policy.Response': 'autoscaling/put_autoscaling_policy/PutAutoscalingPolicyResponse.ts#L22-L25', -'cat._types.CatAliasesColumn': 'cat/_types/CatBase.ts#L1150-L1182', -'cat._types.CatAllocationColumn': 'cat/_types/CatBase.ts#L1184-L1249', -'cat._types.CatAnomalyDetectorColumn': 'cat/_types/CatBase.ts#L32-L401', -'cat._types.CatComponentColumn': 'cat/_types/CatBase.ts#L1251-L1288', -'cat._types.CatCountColumn': 'cat/_types/CatBase.ts#L1290-L1307', -'cat._types.CatDatafeedColumn': 'cat/_types/CatBase.ts#L405-L471', -'cat._types.CatDfaColumn': 'cat/_types/CatBase.ts#L473-L558', -'cat._types.CatFieldDataColumn': 'cat/_types/CatBase.ts#L1309-L1339', -'cat._types.CatHealthColumn': 'cat/_types/CatBase.ts#L1341-L1418', -'cat._types.CatIndicesColumn': 'cat/_types/CatBase.ts#L1420-L2088', -'cat._types.CatMasterColumn': 'cat/_types/CatBase.ts#L2090-L2110', -'cat._types.CatNodeColumn': 'cat/_types/CatBase.ts#L560-L1012', -'cat._types.CatNodeattrsColumn': 'cat/_types/CatBase.ts#L2112-L2153', -'cat._types.CatPendingTasksColumn': 'cat/_types/CatBase.ts#L2438-L2460', -'cat._types.CatPluginsColumn': 'cat/_types/CatBase.ts#L2233-L2259', -'cat._types.CatRecoveryColumn': 'cat/_types/CatBase.ts#L2261-L2393', +'cat._types.CatAliasesColumn': 'cat/_types/CatBase.ts#L1157-L1189', +'cat._types.CatAllocationColumn': 'cat/_types/CatBase.ts#L1191-L1256', +'cat._types.CatAnomalyDetectorColumn': 'cat/_types/CatBase.ts#L32-L406', +'cat._types.CatComponentColumn': 'cat/_types/CatBase.ts#L1258-L1295', +'cat._types.CatCountColumn': 'cat/_types/CatBase.ts#L1297-L1314', +'cat._types.CatDatafeedColumn': 'cat/_types/CatBase.ts#L410-L478', +'cat._types.CatDfaColumn': 'cat/_types/CatBase.ts#L480-L565', +'cat._types.CatFieldDataColumn': 'cat/_types/CatBase.ts#L1316-L1346', +'cat._types.CatHealthColumn': 'cat/_types/CatBase.ts#L1348-L1425', +'cat._types.CatIndicesColumn': 'cat/_types/CatBase.ts#L1427-L2095', +'cat._types.CatMasterColumn': 'cat/_types/CatBase.ts#L2097-L2117', +'cat._types.CatNodeColumn': 'cat/_types/CatBase.ts#L567-L1019', +'cat._types.CatNodeattrsColumn': 'cat/_types/CatBase.ts#L2119-L2160', +'cat._types.CatPendingTasksColumn': 'cat/_types/CatBase.ts#L2445-L2467', +'cat._types.CatPluginsColumn': 'cat/_types/CatBase.ts#L2240-L2266', +'cat._types.CatRecoveryColumn': 'cat/_types/CatBase.ts#L2268-L2400', 'cat._types.CatRequestBase': 'cat/_types/CatBase.ts#L28-L30', -'cat._types.CatSegmentsColumn': 'cat/_types/CatBase.ts#L1014-L1079', -'cat._types.CatShardColumn': 'cat/_types/CatBase.ts#L2770-L3143', -'cat._types.CatSnapshotsColumn': 'cat/_types/CatBase.ts#L1081-L1148', -'cat._types.CatTasksColumn': 'cat/_types/CatBase.ts#L2155-L2231', -'cat._types.CatTemplatesColumn': 'cat/_types/CatBase.ts#L2409-L2436', -'cat._types.CatThreadPoolColumn': 'cat/_types/CatBase.ts#L3146-L3246', -'cat._types.CatTrainedModelsColumn': 'cat/_types/CatBase.ts#L2484-L2558', -'cat._types.CatTransformColumn': 'cat/_types/CatBase.ts#L2563-L2767', +'cat._types.CatSegmentsColumn': 'cat/_types/CatBase.ts#L1021-L1086', +'cat._types.CatShardColumn': 'cat/_types/CatBase.ts#L2777-L3150', +'cat._types.CatSnapshotsColumn': 'cat/_types/CatBase.ts#L1088-L1155', +'cat._types.CatTasksColumn': 'cat/_types/CatBase.ts#L2162-L2238', +'cat._types.CatTemplatesColumn': 'cat/_types/CatBase.ts#L2416-L2443', +'cat._types.CatThreadPoolColumn': 'cat/_types/CatBase.ts#L3153-L3253', +'cat._types.CatTrainedModelsColumn': 'cat/_types/CatBase.ts#L2491-L2565', +'cat._types.CatTransformColumn': 'cat/_types/CatBase.ts#L2570-L2774', 'cat.aliases.AliasesRecord': 'cat/aliases/types.ts#L22-L53', -'cat.aliases.Request': 'cat/aliases/CatAliasesRequest.ts#L24-L78', +'cat.aliases.Request': 'cat/aliases/CatAliasesRequest.ts#L24-L79', 'cat.aliases.Response': 'cat/aliases/CatAliasesResponse.ts#L22-L25', 'cat.allocation.AllocationRecord': 'cat/allocation/types.ts#L25-L99', -'cat.allocation.Request': 'cat/allocation/CatAllocationRequest.ts#L24-L76', +'cat.allocation.Request': 'cat/allocation/CatAllocationRequest.ts#L24-L77', 'cat.allocation.Response': 'cat/allocation/CatAllocationResponse.ts#L22-L25', 'cat.component_templates.ComponentTemplate': 'cat/component_templates/types.ts#L20-L28', -'cat.component_templates.Request': 'cat/component_templates/CatComponentTemplatesRequest.ts#L24-L81', +'cat.component_templates.Request': 'cat/component_templates/CatComponentTemplatesRequest.ts#L24-L83', 'cat.component_templates.Response': 'cat/component_templates/CatComponentTemplatesResponse.ts#L22-L25', 'cat.count.CountRecord': 'cat/count/types.ts#L23-L39', -'cat.count.Request': 'cat/count/CatCountRequest.ts#L23-L80', +'cat.count.Request': 'cat/count/CatCountRequest.ts#L23-L81', 'cat.count.Response': 'cat/count/CatCountResponse.ts#L22-L25', 'cat.fielddata.FielddataRecord': 'cat/fielddata/types.ts#L20-L48', -'cat.fielddata.Request': 'cat/fielddata/CatFielddataRequest.ts#L23-L68', +'cat.fielddata.Request': 'cat/fielddata/CatFielddataRequest.ts#L23-L69', 'cat.fielddata.Response': 'cat/fielddata/CatFielddataResponse.ts#L22-L25', 'cat.health.HealthRecord': 'cat/health/types.ts#L23-L99', -'cat.health.Request': 'cat/health/CatHealthRequest.ts#L23-L65', +'cat.health.Request': 'cat/health/CatHealthRequest.ts#L23-L66', 'cat.health.Response': 'cat/health/CatHealthResponse.ts#L22-L25', -'cat.help.Request': 'cat/help/CatHelpRequest.ts#L20-L36', +'cat.help.Request': 'cat/help/CatHelpRequest.ts#L22-L39', 'cat.help.Response': 'cat/help/CatHelpResponse.ts#L20-L25', 'cat.indices.IndicesRecord': 'cat/indices/types.ts#L20-L808', -'cat.indices.Request': 'cat/indices/CatIndicesRequest.ts#L24-L100', +'cat.indices.Request': 'cat/indices/CatIndicesRequest.ts#L30-L107', 'cat.indices.Response': 'cat/indices/CatIndicesResponse.ts#L22-L25', 'cat.master.MasterRecord': 'cat/master/types.ts#L20-L39', -'cat.master.Request': 'cat/master/CatMasterRequest.ts#L24-L68', +'cat.master.Request': 'cat/master/CatMasterRequest.ts#L24-L69', 'cat.master.Response': 'cat/master/CatMasterResponse.ts#L22-L25', 'cat.ml_data_frame_analytics.DataFrameAnalyticsRecord': 'cat/ml_data_frame_analytics/types.ts#L22-L102', -'cat.ml_data_frame_analytics.Request': 'cat/ml_data_frame_analytics/CatDataFrameAnalyticsRequest.ts#L23-L69', +'cat.ml_data_frame_analytics.Request': 'cat/ml_data_frame_analytics/CatDataFrameAnalyticsRequest.ts#L23-L72', 'cat.ml_data_frame_analytics.Response': 'cat/ml_data_frame_analytics/CatDataFrameAnalyticsResponse.ts#L22-L25', 'cat.ml_datafeeds.DatafeedsRecord': 'cat/ml_datafeeds/types.ts#L22-L87', -'cat.ml_datafeeds.Request': 'cat/ml_datafeeds/CatDatafeedsRequest.ts#L23-L80', +'cat.ml_datafeeds.Request': 'cat/ml_datafeeds/CatDatafeedsRequest.ts#L23-L81', 'cat.ml_datafeeds.Response': 'cat/ml_datafeeds/CatDatafeedsResponse.ts#L22-L25', 'cat.ml_jobs.JobsRecord': 'cat/ml_jobs/types.ts#L24-L347', -'cat.ml_jobs.Request': 'cat/ml_jobs/CatJobsRequest.ts#L23-L80', +'cat.ml_jobs.Request': 'cat/ml_jobs/CatJobsRequest.ts#L23-L81', 'cat.ml_jobs.Response': 'cat/ml_jobs/CatJobsResponse.ts#L22-L25', -'cat.ml_trained_models.Request': 'cat/ml_trained_models/CatTrainedModelsRequest.ts#L24-L79', +'cat.ml_trained_models.Request': 'cat/ml_trained_models/CatTrainedModelsRequest.ts#L24-L80', 'cat.ml_trained_models.Response': 'cat/ml_trained_models/CatTrainedModelsResponse.ts#L22-L25', 'cat.ml_trained_models.TrainedModelsRecord': 'cat/ml_trained_models/types.ts#L23-L115', 'cat.nodeattrs.NodeAttributesRecord': 'cat/nodeattrs/types.ts#L20-L55', -'cat.nodeattrs.Request': 'cat/nodeattrs/CatNodeAttributesRequest.ts#L24-L67', +'cat.nodeattrs.Request': 'cat/nodeattrs/CatNodeAttributesRequest.ts#L24-L68', 'cat.nodeattrs.Response': 'cat/nodeattrs/CatNodeAttributesResponse.ts#L22-L25', 'cat.nodes.NodesRecord': 'cat/nodes/types.ts#L23-L542', -'cat.nodes.Request': 'cat/nodes/CatNodesRequest.ts#L24-L71', +'cat.nodes.Request': 'cat/nodes/CatNodesRequest.ts#L24-L72', 'cat.nodes.Response': 'cat/nodes/CatNodesResponse.ts#L22-L25', 'cat.pending_tasks.PendingTasksRecord': 'cat/pending_tasks/types.ts#L20-L41', -'cat.pending_tasks.Request': 'cat/pending_tasks/CatPendingTasksRequest.ts#L24-L67', +'cat.pending_tasks.Request': 'cat/pending_tasks/CatPendingTasksRequest.ts#L24-L68', 'cat.pending_tasks.Response': 'cat/pending_tasks/CatPendingTasksResponse.ts#L22-L25', 'cat.plugins.PluginsRecord': 'cat/plugins/types.ts#L22-L52', -'cat.plugins.Request': 'cat/plugins/CatPluginsRequest.ts#L24-L72', +'cat.plugins.Request': 'cat/plugins/CatPluginsRequest.ts#L24-L73', 'cat.plugins.Response': 'cat/plugins/CatPluginsResponse.ts#L22-L25', 'cat.recovery.RecoveryRecord': 'cat/recovery/types.ts#L24-L155', -'cat.recovery.Request': 'cat/recovery/CatRecoveryRequest.ts#L23-L83', +'cat.recovery.Request': 'cat/recovery/CatRecoveryRequest.ts#L23-L84', 'cat.recovery.Response': 'cat/recovery/CatRecoveryResponse.ts#L22-L25', 'cat.repositories.RepositoriesRecord': 'cat/repositories/types.ts#L20-L31', -'cat.repositories.Request': 'cat/repositories/CatRepositoriesRequest.ts#L24-L67', +'cat.repositories.Request': 'cat/repositories/CatRepositoriesRequest.ts#L24-L68', 'cat.repositories.Response': 'cat/repositories/CatRepositoriesResponse.ts#L22-L25', -'cat.segments.Request': 'cat/segments/CatSegmentsRequest.ts#L24-L113', +'cat.segments.Request': 'cat/segments/CatSegmentsRequest.ts#L24-L114', 'cat.segments.Response': 'cat/segments/CatSegmentsResponse.ts#L22-L25', 'cat.segments.SegmentsRecord': 'cat/segments/types.ts#L22-L107', -'cat.shards.Request': 'cat/shards/CatShardsRequest.ts#L24-L73', +'cat.shards.Request': 'cat/shards/CatShardsRequest.ts#L24-L74', 'cat.shards.Response': 'cat/shards/CatShardsResponse.ts#L22-L25', 'cat.shards.ShardsRecord': 'cat/shards/types.ts#L20-L427', -'cat.snapshots.Request': 'cat/snapshots/CatSnapshotsRequest.ts#L24-L80', +'cat.snapshots.Request': 'cat/snapshots/CatSnapshotsRequest.ts#L24-L81', 'cat.snapshots.Response': 'cat/snapshots/CatSnapshotsResponse.ts#L22-L25', 'cat.snapshots.SnapshotsRecord': 'cat/snapshots/types.ts#L24-L96', -'cat.tasks.Request': 'cat/tasks/CatTasksRequest.ts#L24-L78', +'cat.tasks.Request': 'cat/tasks/CatTasksRequest.ts#L24-L79', 'cat.tasks.Response': 'cat/tasks/CatTasksResponse.ts#L22-L25', 'cat.tasks.TasksRecord': 'cat/tasks/types.ts#L22-L101', -'cat.templates.Request': 'cat/templates/CatTemplatesRequest.ts#L24-L79', +'cat.templates.Request': 'cat/templates/CatTemplatesRequest.ts#L24-L80', 'cat.templates.Response': 'cat/templates/CatTemplatesResponse.ts#L22-L25', 'cat.templates.TemplatesRecord': 'cat/templates/types.ts#L22-L48', -'cat.thread_pool.Request': 'cat/thread_pool/CatThreadPoolRequest.ts#L24-L79', +'cat.thread_pool.Request': 'cat/thread_pool/CatThreadPoolRequest.ts#L24-L80', 'cat.thread_pool.Response': 'cat/thread_pool/CatThreadPoolResponse.ts#L22-L25', 'cat.thread_pool.ThreadPoolRecord': 'cat/thread_pool/types.ts#L22-L124', -'cat.transforms.Request': 'cat/transforms/CatTransformsRequest.ts#L24-L84', +'cat.transforms.Request': 'cat/transforms/CatTransformsRequest.ts#L24-L86', 'cat.transforms.Response': 'cat/transforms/CatTransformsResponse.ts#L22-L25', 'cat.transforms.TransformsRecord': 'cat/transforms/types.ts#L22-L197', 'ccr._types.FollowIndexStats': 'ccr/_types/FollowIndexStats.ts#L30-L35', -'ccr._types.ReadException': 'ccr/_types/FollowIndexStats.ts#L111-L118', -'ccr._types.ShardStats': 'ccr/_types/FollowIndexStats.ts#L37-L109', -'ccr.delete_auto_follow_pattern.Request': 'ccr/delete_auto_follow_pattern/DeleteAutoFollowPatternRequest.ts#L24-L54', +'ccr._types.ReadException': 'ccr/_types/FollowIndexStats.ts#L112-L119', +'ccr._types.ShardStats': 'ccr/_types/FollowIndexStats.ts#L37-L110', +'ccr.delete_auto_follow_pattern.Request': 'ccr/delete_auto_follow_pattern/DeleteAutoFollowPatternRequest.ts#L24-L55', 'ccr.delete_auto_follow_pattern.Response': 'ccr/delete_auto_follow_pattern/DeleteAutoFollowPatternResponse.ts#L22-L25', -'ccr.follow.Request': 'ccr/follow/CreateFollowIndexRequest.ts#L26-L126', +'ccr.follow.Request': 'ccr/follow/CreateFollowIndexRequest.ts#L31-L133', 'ccr.follow.Response': 'ccr/follow/CreateFollowIndexResponse.ts#L20-L26', 'ccr.follow_info.FollowerIndex': 'ccr/follow_info/types.ts#L24-L35', 'ccr.follow_info.FollowerIndexParameters': 'ccr/follow_info/types.ts#L42-L88', 'ccr.follow_info.FollowerIndexStatus': 'ccr/follow_info/types.ts#L37-L40', -'ccr.follow_info.Request': 'ccr/follow_info/FollowInfoRequest.ts#L24-L55', +'ccr.follow_info.Request': 'ccr/follow_info/FollowInfoRequest.ts#L24-L56', 'ccr.follow_info.Response': 'ccr/follow_info/FollowInfoResponse.ts#L22-L24', -'ccr.follow_stats.Request': 'ccr/follow_stats/FollowIndexStatsRequest.ts#L24-L54', +'ccr.follow_stats.Request': 'ccr/follow_stats/FollowIndexStatsRequest.ts#L24-L55', 'ccr.follow_stats.Response': 'ccr/follow_stats/FollowIndexStatsResponse.ts#L22-L27', -'ccr.forget_follower.Request': 'ccr/forget_follower/ForgetFollowerIndexRequest.ts#L24-L66', +'ccr.forget_follower.Request': 'ccr/forget_follower/ForgetFollowerIndexRequest.ts#L24-L69', 'ccr.forget_follower.Response': 'ccr/forget_follower/ForgetFollowerIndexResponse.ts#L22-L24', 'ccr.get_auto_follow_pattern.AutoFollowPattern': 'ccr/get_auto_follow_pattern/types.ts#L23-L26', 'ccr.get_auto_follow_pattern.AutoFollowPatternSummary': 'ccr/get_auto_follow_pattern/types.ts#L28-L52', -'ccr.get_auto_follow_pattern.Request': 'ccr/get_auto_follow_pattern/GetAutoFollowPatternRequest.ts#L24-L60', +'ccr.get_auto_follow_pattern.Request': 'ccr/get_auto_follow_pattern/GetAutoFollowPatternRequest.ts#L24-L62', 'ccr.get_auto_follow_pattern.Response': 'ccr/get_auto_follow_pattern/GetAutoFollowPatternResponse.ts#L22-L24', -'ccr.pause_auto_follow_pattern.Request': 'ccr/pause_auto_follow_pattern/PauseAutoFollowPatternRequest.ts#L24-L60', +'ccr.pause_auto_follow_pattern.Request': 'ccr/pause_auto_follow_pattern/PauseAutoFollowPatternRequest.ts#L24-L61', 'ccr.pause_auto_follow_pattern.Response': 'ccr/pause_auto_follow_pattern/PauseAutoFollowPatternResponse.ts#L22-L25', -'ccr.pause_follow.Request': 'ccr/pause_follow/PauseFollowIndexRequest.ts#L24-L56', +'ccr.pause_follow.Request': 'ccr/pause_follow/PauseFollowIndexRequest.ts#L24-L57', 'ccr.pause_follow.Response': 'ccr/pause_follow/PauseFollowIndexResponse.ts#L22-L25', -'ccr.put_auto_follow_pattern.Request': 'ccr/put_auto_follow_pattern/PutAutoFollowPatternRequest.ts#L27-L134', +'ccr.put_auto_follow_pattern.Request': 'ccr/put_auto_follow_pattern/PutAutoFollowPatternRequest.ts#L33-L142', 'ccr.put_auto_follow_pattern.Response': 'ccr/put_auto_follow_pattern/PutAutoFollowPatternResponse.ts#L22-L25', -'ccr.resume_auto_follow_pattern.Request': 'ccr/resume_auto_follow_pattern/ResumeAutoFollowPatternRequest.ts#L24-L56', +'ccr.resume_auto_follow_pattern.Request': 'ccr/resume_auto_follow_pattern/ResumeAutoFollowPatternRequest.ts#L24-L57', 'ccr.resume_auto_follow_pattern.Response': 'ccr/resume_auto_follow_pattern/ResumeAutoFollowPatternResponse.ts#L22-L25', -'ccr.resume_follow.Request': 'ccr/resume_follow/ResumeFollowIndexRequest.ts#L25-L66', +'ccr.resume_follow.Request': 'ccr/resume_follow/ResumeFollowIndexRequest.ts#L25-L69', 'ccr.resume_follow.Response': 'ccr/resume_follow/ResumeFollowIndexResponse.ts#L22-L25', 'ccr.stats.AutoFollowStats': 'ccr/stats/types.ts.ts#L32-L47', 'ccr.stats.AutoFollowedCluster': 'ccr/stats/types.ts.ts#L26-L30', 'ccr.stats.FollowStats': 'ccr/stats/types.ts.ts#L49-L51', -'ccr.stats.Request': 'ccr/stats/CcrStatsRequest.ts#L23-L53', +'ccr.stats.Request': 'ccr/stats/CcrStatsRequest.ts#L24-L55', 'ccr.stats.Response': 'ccr/stats/CcrStatsResponse.ts#L22-L29', -'ccr.unfollow.Request': 'ccr/unfollow/UnfollowIndexRequest.ts#L24-L59', +'ccr.unfollow.Request': 'ccr/unfollow/UnfollowIndexRequest.ts#L24-L60', 'ccr.unfollow.Response': 'ccr/unfollow/UnfollowIndexResponse.ts#L22-L25', 'cluster._types.ComponentTemplate': 'cluster/_types/ComponentTemplate.ts#L29-L32', 'cluster._types.ComponentTemplateNode': 'cluster/_types/ComponentTemplate.ts#L34-L67', @@ -1242,50 +1242,50 @@ 'cluster.allocation_explain.DiskUsage': 'cluster/allocation_explain/types.ts#L63-L70', 'cluster.allocation_explain.NodeAllocationExplanation': 'cluster/allocation_explain/types.ts#L103-L117', 'cluster.allocation_explain.NodeDiskUsage': 'cluster/allocation_explain/types.ts#L57-L61', -'cluster.allocation_explain.Request': 'cluster/allocation_explain/ClusterAllocationExplainRequest.ts#L25-L99', +'cluster.allocation_explain.Request': 'cluster/allocation_explain/ClusterAllocationExplainRequest.ts#L25-L101', 'cluster.allocation_explain.ReservedSize': 'cluster/allocation_explain/types.ts#L72-L77', 'cluster.allocation_explain.Response': 'cluster/allocation_explain/ClusterAllocationExplainResponse.ts#L32-L64', 'cluster.allocation_explain.UnassignedInformation': 'cluster/allocation_explain/types.ts#L128-L136', 'cluster.allocation_explain.UnassignedInformationReason': 'cluster/allocation_explain/types.ts#L138-L157', -'cluster.delete_component_template.Request': 'cluster/delete_component_template/ClusterDeleteComponentTemplateRequest.ts#L24-L62', +'cluster.delete_component_template.Request': 'cluster/delete_component_template/ClusterDeleteComponentTemplateRequest.ts#L24-L63', 'cluster.delete_component_template.Response': 'cluster/delete_component_template/ClusterDeleteComponentTemplateResponse.ts#L22-L25', -'cluster.delete_voting_config_exclusions.Request': 'cluster/delete_voting_config_exclusions/ClusterDeleteVotingConfigExclusionsRequest.ts#L23-L56', -'cluster.exists_component_template.Request': 'cluster/exists_component_template/ClusterComponentTemplateExistsRequest.ts#L24-L64', -'cluster.get_component_template.Request': 'cluster/get_component_template/ClusterGetComponentTemplateRequest.ts#L24-L83', +'cluster.delete_voting_config_exclusions.Request': 'cluster/delete_voting_config_exclusions/ClusterDeleteVotingConfigExclusionsRequest.ts#L24-L58', +'cluster.exists_component_template.Request': 'cluster/exists_component_template/ClusterComponentTemplateExistsRequest.ts#L24-L65', +'cluster.get_component_template.Request': 'cluster/get_component_template/ClusterGetComponentTemplateRequest.ts#L24-L85', 'cluster.get_component_template.Response': 'cluster/get_component_template/ClusterGetComponentTemplateResponse.ts#L22-L24', -'cluster.get_settings.Request': 'cluster/get_settings/ClusterGetSettingsRequest.ts#L23-L70', +'cluster.get_settings.Request': 'cluster/get_settings/ClusterGetSettingsRequest.ts#L24-L72', 'cluster.get_settings.Response': 'cluster/get_settings/ClusterGetSettingsResponse.ts#L23-L32', 'cluster.health.HealthResponseBody': 'cluster/health/ClusterHealthResponse.ts#L40-L77', 'cluster.health.IndexHealthStats': 'cluster/health/types.ts#L24-L35', -'cluster.health.Request': 'cluster/health/ClusterHealthRequest.ts#L32-L121', +'cluster.health.Request': 'cluster/health/ClusterHealthRequest.ts#L33-L124', 'cluster.health.Response': 'cluster/health/ClusterHealthResponse.ts#L26-L38', 'cluster.health.ShardHealthStats': 'cluster/health/types.ts#L37-L45', -'cluster.info.Request': 'cluster/info/ClusterInfoRequest.ts#L23-L43', +'cluster.info.Request': 'cluster/info/ClusterInfoRequest.ts#L23-L44', 'cluster.info.Response': 'cluster/info/ClusterInfoResponse.ts#L26-L34', 'cluster.pending_tasks.PendingTask': 'cluster/pending_tasks/types.ts#L23-L47', -'cluster.pending_tasks.Request': 'cluster/pending_tasks/ClusterPendingTasksRequest.ts#L23-L57', +'cluster.pending_tasks.Request': 'cluster/pending_tasks/ClusterPendingTasksRequest.ts#L24-L59', 'cluster.pending_tasks.Response': 'cluster/pending_tasks/ClusterPendingTasksResponse.ts#L22-L24', -'cluster.post_voting_config_exclusions.Request': 'cluster/post_voting_config_exclusions/ClusterPostVotingConfigExclusionsRequest.ts#L24-L81', -'cluster.put_component_template.Request': 'cluster/put_component_template/ClusterPutComponentTemplateRequest.ts#L25-L111', +'cluster.post_voting_config_exclusions.Request': 'cluster/post_voting_config_exclusions/ClusterPostVotingConfigExclusionsRequest.ts#L24-L82', +'cluster.put_component_template.Request': 'cluster/put_component_template/ClusterPutComponentTemplateRequest.ts#L25-L113', 'cluster.put_component_template.Response': 'cluster/put_component_template/ClusterPutComponentTemplateResponse.ts#L22-L25', -'cluster.put_settings.Request': 'cluster/put_settings/ClusterPutSettingsRequest.ts#L25-L71', +'cluster.put_settings.Request': 'cluster/put_settings/ClusterPutSettingsRequest.ts#L26-L84', 'cluster.put_settings.Response': 'cluster/put_settings/ClusterPutSettingsResponse.ts#L23-L29', 'cluster.remote_info.ClusterRemoteInfo': 'cluster/remote_info/ClusterRemoteInfoResponse.ts#L29-L30', 'cluster.remote_info.ClusterRemoteProxyInfo': 'cluster/remote_info/ClusterRemoteInfoResponse.ts#L58-L83', 'cluster.remote_info.ClusterRemoteSniffInfo': 'cluster/remote_info/ClusterRemoteInfoResponse.ts#L32-L56', -'cluster.remote_info.Request': 'cluster/remote_info/ClusterRemoteInfoRequest.ts#L22-L46', +'cluster.remote_info.Request': 'cluster/remote_info/ClusterRemoteInfoRequest.ts#L23-L48', 'cluster.remote_info.Response': 'cluster/remote_info/ClusterRemoteInfoResponse.ts#L24-L27', 'cluster.reroute.Command': 'cluster/reroute/types.ts#L22-L43', 'cluster.reroute.CommandAllocatePrimaryAction': 'cluster/reroute/types.ts#L78-L84', 'cluster.reroute.CommandAllocateReplicaAction': 'cluster/reroute/types.ts#L69-L76', 'cluster.reroute.CommandCancelAction': 'cluster/reroute/types.ts#L45-L50', 'cluster.reroute.CommandMoveAction': 'cluster/reroute/types.ts#L60-L67', -'cluster.reroute.Request': 'cluster/reroute/ClusterRerouteRequest.ts#L25-L92', +'cluster.reroute.Request': 'cluster/reroute/ClusterRerouteRequest.ts#L25-L94', 'cluster.reroute.RerouteDecision': 'cluster/reroute/types.ts#L86-L90', 'cluster.reroute.RerouteExplanation': 'cluster/reroute/types.ts#L92-L96', 'cluster.reroute.RerouteParameters': 'cluster/reroute/types.ts#L98-L105', 'cluster.reroute.Response': 'cluster/reroute/ClusterRerouteResponse.ts#L23-L34', -'cluster.state.Request': 'cluster/state/ClusterStateRequest.ts#L29-L97', +'cluster.state.Request': 'cluster/state/ClusterStateRequest.ts#L30-L122', 'cluster.state.Response': 'cluster/state/ClusterStateResponse.ts#L22-L31', 'cluster.stats.CCSStats': 'cluster/stats/types.ts#L769-L784', 'cluster.stats.CCSUsageClusterStats': 'cluster/stats/types.ts#L855-L862', @@ -1325,7 +1325,7 @@ 'cluster.stats.RemoteClusterInfo': 'cluster/stats/types.ts#L786-L817', 'cluster.stats.RepositoryStatsCurrentCounts': 'cluster/stats/types.ts#L672-L680', 'cluster.stats.RepositoryStatsShards': 'cluster/stats/types.ts#L682-L687', -'cluster.stats.Request': 'cluster/stats/ClusterStatsRequest.ts#L24-L61', +'cluster.stats.Request': 'cluster/stats/ClusterStatsRequest.ts#L24-L63', 'cluster.stats.Response': 'cluster/stats/ClusterStatsResponse.ts#L71-L74', 'cluster.stats.RuntimeFieldTypes': 'cluster/stats/types.ts#L256-L313', 'cluster.stats.SearchUsageStats': 'cluster/stats/types.ts#L149-L155', @@ -1368,117 +1368,117 @@ 'connector._types.SyncRulesFeature': 'connector/_types/Connector.ts#L219-L228', 'connector._types.SyncStatus': 'connector/_types/Connector.ts#L138-L146', 'connector._types.Validation': 'connector/_types/Connector.ts#L50-L56', -'connector.check_in.Request': 'connector/check_in/ConnectorCheckInRequest.ts#L22-L44', +'connector.check_in.Request': 'connector/check_in/ConnectorCheckInRequest.ts#L22-L45', 'connector.check_in.Response': 'connector/check_in/ConnectorCheckInResponse.ts#L22-L26', -'connector.delete.Request': 'connector/delete/ConnectorDeleteRequest.ts#L22-L59', +'connector.delete.Request': 'connector/delete/ConnectorDeleteRequest.ts#L22-L60', 'connector.delete.Response': 'connector/delete/ConnectorDeleteResponse.ts#L22-L25', -'connector.get.Request': 'connector/get/ConnectorGetRequest.ts#L22-L51', +'connector.get.Request': 'connector/get/ConnectorGetRequest.ts#L22-L52', 'connector.get.Response': 'connector/get/ConnectorGetResponse.ts#L22-L25', -'connector.list.Request': 'connector/list/ConnectorListRequest.ts#L23-L72', +'connector.list.Request': 'connector/list/ConnectorListRequest.ts#L23-L73', 'connector.list.Response': 'connector/list/ConnectorListResponse.ts#L23-L28', -'connector.post.Request': 'connector/post/ConnectorPostRequest.ts#L22-L52', +'connector.post.Request': 'connector/post/ConnectorPostRequest.ts#L22-L55', 'connector.post.Response': 'connector/post/ConnectorPostResponse.ts#L23-L28', -'connector.put.Request': 'connector/put/ConnectorPutRequest.ts#L22-L59', +'connector.put.Request': 'connector/put/ConnectorPutRequest.ts#L22-L61', 'connector.put.Response': 'connector/put/ConnectorPutResponse.ts#L23-L28', -'connector.sync_job_cancel.Request': 'connector/sync_job_cancel/SyncJobCancelRequest.ts#L22-L45', +'connector.sync_job_cancel.Request': 'connector/sync_job_cancel/SyncJobCancelRequest.ts#L22-L46', 'connector.sync_job_cancel.Response': 'connector/sync_job_cancel/SyncJobCancelResponse.ts#L22-L26', -'connector.sync_job_check_in.Request': 'connector/sync_job_check_in/SyncJobCheckInRequest.ts#L22-L46', +'connector.sync_job_check_in.Request': 'connector/sync_job_check_in/SyncJobCheckInRequest.ts#L22-L47', 'connector.sync_job_check_in.Response': 'connector/sync_job_check_in/SyncJobCheckInResponse.ts#L20-L22', -'connector.sync_job_claim.Request': 'connector/sync_job_claim/SyncJobClaimRequest.ts#L23-L62', +'connector.sync_job_claim.Request': 'connector/sync_job_claim/SyncJobClaimRequest.ts#L23-L64', 'connector.sync_job_claim.Response': 'connector/sync_job_claim/SyncJobClaimResponse.ts#L20-L22', -'connector.sync_job_delete.Request': 'connector/sync_job_delete/SyncJobDeleteRequest.ts#L22-L45', +'connector.sync_job_delete.Request': 'connector/sync_job_delete/SyncJobDeleteRequest.ts#L22-L46', 'connector.sync_job_delete.Response': 'connector/sync_job_delete/SyncJobDeleteResponse.ts#L22-L25', -'connector.sync_job_error.Request': 'connector/sync_job_error/SyncJobErrorRequest.ts#L23-L53', +'connector.sync_job_error.Request': 'connector/sync_job_error/SyncJobErrorRequest.ts#L23-L55', 'connector.sync_job_error.Response': 'connector/sync_job_error/SyncJobErrorResponse.ts#L20-L22', -'connector.sync_job_get.Request': 'connector/sync_job_get/SyncJobGetRequest.ts#L22-L43', +'connector.sync_job_get.Request': 'connector/sync_job_get/SyncJobGetRequest.ts#L22-L44', 'connector.sync_job_get.Response': 'connector/sync_job_get/SyncJobGetResponse.ts#L22-L25', -'connector.sync_job_list.Request': 'connector/sync_job_list/SyncJobListRequest.ts#L25-L65', +'connector.sync_job_list.Request': 'connector/sync_job_list/SyncJobListRequest.ts#L25-L66', 'connector.sync_job_list.Response': 'connector/sync_job_list/SyncJobListResponse.ts#L23-L28', -'connector.sync_job_post.Request': 'connector/sync_job_post/SyncJobPostRequest.ts#L23-L51', +'connector.sync_job_post.Request': 'connector/sync_job_post/SyncJobPostRequest.ts#L23-L53', 'connector.sync_job_post.Response': 'connector/sync_job_post/SyncJobPostResponse.ts#L22-L26', -'connector.sync_job_update_stats.Request': 'connector/sync_job_update_stats/SyncJobUpdateStatsRequest.ts#L24-L79', +'connector.sync_job_update_stats.Request': 'connector/sync_job_update_stats/SyncJobUpdateStatsRequest.ts#L24-L81', 'connector.sync_job_update_stats.Response': 'connector/sync_job_update_stats/SyncJobUpdateStatsResponse.ts#L20-L22', -'connector.update_active_filtering.Request': 'connector/update_active_filtering/ConnectorUpdateActiveFilteringRequest.ts#L22-L44', +'connector.update_active_filtering.Request': 'connector/update_active_filtering/ConnectorUpdateActiveFilteringRequest.ts#L22-L46', 'connector.update_active_filtering.Response': 'connector/update_active_filtering/ConnectorUpdateActiveFilteringResponse.ts#L22-L26', -'connector.update_api_key_id.Request': 'connector/update_api_key_id/ConnectorUpdateAPIKeyIDRequest.ts#L21-L53', +'connector.update_api_key_id.Request': 'connector/update_api_key_id/ConnectorUpdateAPIKeyIDRequest.ts#L21-L55', 'connector.update_api_key_id.Response': 'connector/update_api_key_id/ConnectorUpdateAPIKeyIDResponse.ts#L22-L26', -'connector.update_configuration.Request': 'connector/update_configuration/ConnectorUpdateConfigurationRequest.ts#L25-L55', +'connector.update_configuration.Request': 'connector/update_configuration/ConnectorUpdateConfigurationRequest.ts#L25-L57', 'connector.update_configuration.Response': 'connector/update_configuration/ConnectorUpdateConfigurationResponse.ts#L22-L26', -'connector.update_error.Request': 'connector/update_error/ConnectorUpdateErrorRequest.ts#L23-L54', +'connector.update_error.Request': 'connector/update_error/ConnectorUpdateErrorRequest.ts#L23-L56', 'connector.update_error.Response': 'connector/update_error/ConnectorUpdateErrorResponse.ts#L22-L26', -'connector.update_features.Request': 'connector/update_features/ConnectorUpdateFeaturesRequest.ts#L23-L62', +'connector.update_features.Request': 'connector/update_features/ConnectorUpdateFeaturesRequest.ts#L23-L64', 'connector.update_features.Response': 'connector/update_features/ConnectorUpdateFeaturesResponse.ts#L22-L26', -'connector.update_filtering.Request': 'connector/update_filtering/ConnectorUpdateFilteringRequest.ts#L27-L60', +'connector.update_filtering.Request': 'connector/update_filtering/ConnectorUpdateFilteringRequest.ts#L27-L62', 'connector.update_filtering.Response': 'connector/update_filtering/ConnectorUpdateFilteringResponse.ts#L22-L26', -'connector.update_filtering_validation.Request': 'connector/update_filtering_validation/ConnectorUpdateFilteringValidationRequest.ts#L23-L48', +'connector.update_filtering_validation.Request': 'connector/update_filtering_validation/ConnectorUpdateFilteringValidationRequest.ts#L23-L50', 'connector.update_filtering_validation.Response': 'connector/update_filtering_validation/ConnectorUpdateFilteringValidationResponse.ts#L22-L26', -'connector.update_index_name.Request': 'connector/update_index_name/ConnectorUpdateIndexNameRequest.ts#L23-L51', +'connector.update_index_name.Request': 'connector/update_index_name/ConnectorUpdateIndexNameRequest.ts#L23-L53', 'connector.update_index_name.Response': 'connector/update_index_name/ConnectorUpdateIndexNameResponse.ts#L22-L26', -'connector.update_name.Request': 'connector/update_name/ConnectorUpdateNameRequest.ts#L22-L50', +'connector.update_name.Request': 'connector/update_name/ConnectorUpdateNameRequest.ts#L22-L52', 'connector.update_name.Response': 'connector/update_name/ConnectorUpdateNameResponse.ts#L22-L26', -'connector.update_native.Request': 'connector/update_native/ConnectorUpdateNativeRequest.ts#L22-L49', +'connector.update_native.Request': 'connector/update_native/ConnectorUpdateNativeRequest.ts#L22-L51', 'connector.update_native.Response': 'connector/update_native/ConnectorUpdateNativeResponse.ts#L22-L26', -'connector.update_pipeline.Request': 'connector/update_pipeline/ConnectorUpdatePipelineRequest.ts#L23-L52', +'connector.update_pipeline.Request': 'connector/update_pipeline/ConnectorUpdatePipelineRequest.ts#L23-L54', 'connector.update_pipeline.Response': 'connector/update_pipeline/ConnectorUpdatePipelineResponse.ts#L22-L26', -'connector.update_scheduling.Request': 'connector/update_scheduling/ConnectorUpdateSchedulingRequest.ts#L23-L51', +'connector.update_scheduling.Request': 'connector/update_scheduling/ConnectorUpdateSchedulingRequest.ts#L23-L53', 'connector.update_scheduling.Response': 'connector/update_scheduling/ConnectorUpdateSchedulingResponse.ts#L22-L26', -'connector.update_service_type.Request': 'connector/update_service_type/ConnectorUpdateServiceTypeRequest.ts#L22-L49', +'connector.update_service_type.Request': 'connector/update_service_type/ConnectorUpdateServiceTypeRequest.ts#L22-L51', 'connector.update_service_type.Response': 'connector/update_service_type/ConnectorUpdateServiceTypeResponse.ts#L22-L26', -'connector.update_status.Request': 'connector/update_status/ConnectorUpdateStatusRequest.ts#L23-L50', +'connector.update_status.Request': 'connector/update_status/ConnectorUpdateStatusRequest.ts#L23-L52', 'connector.update_status.Response': 'connector/update_status/ConnectorUpdateStatusResponse.ts#L22-L26', -'dangling_indices.delete_dangling_index.Request': 'dangling_indices/delete_dangling_index/DeleteDanglingIndexRequest.ts#L24-L60', +'dangling_indices.delete_dangling_index.Request': 'dangling_indices/delete_dangling_index/DeleteDanglingIndexRequest.ts#L24-L66', 'dangling_indices.delete_dangling_index.Response': 'dangling_indices/delete_dangling_index/DeleteDanglingIndexResponse.ts#L22-L25', -'dangling_indices.import_dangling_index.Request': 'dangling_indices/import_dangling_index/ImportDanglingIndexRequest.ts#L24-L61', +'dangling_indices.import_dangling_index.Request': 'dangling_indices/import_dangling_index/ImportDanglingIndexRequest.ts#L24-L67', 'dangling_indices.import_dangling_index.Response': 'dangling_indices/import_dangling_index/ImportDanglingIndexResponse.ts#L22-L25', 'dangling_indices.list_dangling_indices.DanglingIndex': 'dangling_indices/list_dangling_indices/ListDanglingIndicesResponse.ts#L29-L34', -'dangling_indices.list_dangling_indices.Request': 'dangling_indices/list_dangling_indices/ListDanglingIndicesRequest.ts#L22-L42', +'dangling_indices.list_dangling_indices.Request': 'dangling_indices/list_dangling_indices/ListDanglingIndicesRequest.ts#L23-L44', 'dangling_indices.list_dangling_indices.Response': 'dangling_indices/list_dangling_indices/ListDanglingIndicesResponse.ts#L23-L27', 'enrich._types.Policy': 'enrich/_types/Policy.ts#L34-L41', 'enrich._types.PolicyType': 'enrich/_types/Policy.ts#L28-L32', 'enrich._types.Summary': 'enrich/_types/Policy.ts#L24-L26', -'enrich.delete_policy.Request': 'enrich/delete_policy/DeleteEnrichPolicyRequest.ts#L24-L53', +'enrich.delete_policy.Request': 'enrich/delete_policy/DeleteEnrichPolicyRequest.ts#L24-L54', 'enrich.delete_policy.Response': 'enrich/delete_policy/DeleteEnrichPolicyResponse.ts#L22-L25', 'enrich.execute_policy.EnrichPolicyPhase': 'enrich/execute_policy/types.ts#L25-L31', 'enrich.execute_policy.ExecuteEnrichPolicyStatus': 'enrich/execute_policy/types.ts#L20-L23', -'enrich.execute_policy.Request': 'enrich/execute_policy/ExecuteEnrichPolicyRequest.ts#L24-L58', +'enrich.execute_policy.Request': 'enrich/execute_policy/ExecuteEnrichPolicyRequest.ts#L24-L59', 'enrich.execute_policy.Response': 'enrich/execute_policy/ExecuteEnrichPolicyResponse.ts#L23-L28', -'enrich.get_policy.Request': 'enrich/get_policy/GetEnrichPolicyRequest.ts#L24-L58', +'enrich.get_policy.Request': 'enrich/get_policy/GetEnrichPolicyRequest.ts#L24-L59', 'enrich.get_policy.Response': 'enrich/get_policy/GetEnrichPolicyResponse.ts#L22-L24', -'enrich.put_policy.Request': 'enrich/put_policy/PutEnrichPolicyRequest.ts#L25-L68', +'enrich.put_policy.Request': 'enrich/put_policy/PutEnrichPolicyRequest.ts#L25-L70', 'enrich.put_policy.Response': 'enrich/put_policy/PutEnrichPolicyResponse.ts#L22-L25', 'enrich.stats.CacheStats': 'enrich/stats/types.ts#L38-L50', 'enrich.stats.CoordinatorStats': 'enrich/stats/types.ts#L30-L36', 'enrich.stats.ExecutingPolicy': 'enrich/stats/types.ts#L25-L28', -'enrich.stats.Request': 'enrich/stats/EnrichStatsRequest.ts#L23-L46', +'enrich.stats.Request': 'enrich/stats/EnrichStatsRequest.ts#L24-L48', 'enrich.stats.Response': 'enrich/stats/EnrichStatsResponse.ts#L22-L39', 'eql._types.EqlHits': 'eql/_types/EqlHits.ts#L25-L39', 'eql._types.EqlSearchResponseBase': 'eql/_types/EqlSearchResponseBase.ts#L25-L54', 'eql._types.HitsEvent': 'eql/_types/EqlHits.ts#L41-L54', 'eql._types.HitsSequence': 'eql/_types/EqlHits.ts#L56-L64', -'eql.delete.Request': 'eql/delete/EqlDeleteRequest.ts#L23-L48', +'eql.delete.Request': 'eql/delete/EqlDeleteRequest.ts#L23-L49', 'eql.delete.Response': 'eql/delete/EqlDeleteResponse.ts#L22-L25', -'eql.get.Request': 'eql/get/EqlGetRequest.ts#L24-L59', +'eql.get.Request': 'eql/get/EqlGetRequest.ts#L24-L60', 'eql.get.Response': 'eql/get/EqlGetResponse.ts#L22-L25', -'eql.get_status.Request': 'eql/get_status/EqlGetStatusRequest.ts#L23-L43', +'eql.get_status.Request': 'eql/get_status/EqlGetStatusRequest.ts#L23-L44', 'eql.get_status.Response': 'eql/get_status/EqlGetStatusResponse.ts#L24-L51', -'eql.search.Request': 'eql/search/EqlSearchRequest.ts#L28-L180', +'eql.search.Request': 'eql/search/EqlSearchRequest.ts#L34-L192', 'eql.search.Response': 'eql/search/EqlSearchResponse.ts#L22-L25', 'eql.search.ResultPosition': 'eql/search/types.ts#L20-L32', 'esql._types.EsqlFormat': 'esql/_types/QueryParameters.ts#L20-L29', 'esql._types.TableValuesContainer': 'esql/_types/TableValuesContainer.ts#L22-L28', -'esql.get_query.Request': 'esql/get_query/GetQueryRequest.ts#L23-L44', +'esql.get_query.Request': 'esql/get_query/GetQueryRequest.ts#L23-L47', 'esql.get_query.Response': 'esql/get_query/GetQueryResponse.ts#L23-L33', 'esql.list_queries.Body': 'esql/list_queries/ListQueriesResponse.ts#L24-L30', -'esql.list_queries.Request': 'esql/list_queries/ListQueriesRequest.ts#L22-L40', +'esql.list_queries.Request': 'esql/list_queries/ListQueriesRequest.ts#L23-L43', 'esql.list_queries.Response': 'esql/list_queries/ListQueriesResponse.ts#L32-L36', -'esql.query.Request': 'esql/query/QueryRequest.ts#L27-L118', +'esql.query.Request': 'esql/query/QueryRequest.ts#L28-L121', 'esql.query.Response': 'esql/query/QueryResponse.ts#L22-L25', 'features._types.Feature': 'features/_types/Feature.ts#L20-L23', -'features.get_features.Request': 'features/get_features/GetFeaturesRequest.ts#L23-L54', +'features.get_features.Request': 'features/get_features/GetFeaturesRequest.ts#L24-L56', 'features.get_features.Response': 'features/get_features/GetFeaturesResponse.ts#L22-L26', -'features.reset_features.Request': 'features/reset_features/ResetFeaturesRequest.ts#L23-L61', +'features.reset_features.Request': 'features/reset_features/ResetFeaturesRequest.ts#L24-L63', 'features.reset_features.Response': 'features/reset_features/ResetFeaturesResponse.ts#L22-L26', -'fleet.search.Request': 'fleet/search/SearchRequest.ts#L54-L267', +'fleet.search.Request': 'fleet/search/SearchRequest.ts#L55-L271', 'fleet.search.Response': 'fleet/search/SearchResponse.ts#L33-L50', 'graph._types.Connection': 'graph/_types/Connection.ts#L22-L27', 'graph._types.ExploreControls': 'graph/_types/ExploreControls.ts#L24-L49', @@ -1487,7 +1487,7 @@ 'graph._types.Vertex': 'graph/_types/Vertex.ts#L23-L28', 'graph._types.VertexDefinition': 'graph/_types/Vertex.ts#L30-L59', 'graph._types.VertexInclude': 'graph/_types/Vertex.ts#L61-L65', -'graph.explore.Request': 'graph/explore/GraphExploreRequest.ts#L28-L85', +'graph.explore.Request': 'graph/explore/GraphExploreRequest.ts#L28-L87', 'graph.explore.Response': 'graph/explore/GraphExploreResponse.ts#L25-L33', 'ilm._types.Actions': 'ilm/_types/Phase.ts#L39-L93', 'ilm._types.AllocateAction': 'ilm/_types/Phase.ts#L133-L139', @@ -1503,43 +1503,42 @@ 'ilm._types.SetPriorityAction': 'ilm/_types/Phase.ts#L95-L97', 'ilm._types.ShrinkAction': 'ilm/_types/Phase.ts#L117-L121', 'ilm._types.WaitForSnapshotAction': 'ilm/_types/Phase.ts#L145-L147', -'ilm.delete_lifecycle.Request': 'ilm/delete_lifecycle/DeleteLifecycleRequest.ts#L24-L59', +'ilm.delete_lifecycle.Request': 'ilm/delete_lifecycle/DeleteLifecycleRequest.ts#L24-L60', 'ilm.delete_lifecycle.Response': 'ilm/delete_lifecycle/DeleteLifecycleResponse.ts#L22-L25', 'ilm.explain_lifecycle.LifecycleExplain': 'ilm/explain_lifecycle/types.ts#L75-L78', 'ilm.explain_lifecycle.LifecycleExplainManaged': 'ilm/explain_lifecycle/types.ts#L33-L68', 'ilm.explain_lifecycle.LifecycleExplainPhaseExecution': 'ilm/explain_lifecycle/types.ts#L80-L85', 'ilm.explain_lifecycle.LifecycleExplainUnmanaged': 'ilm/explain_lifecycle/types.ts#L70-L73', -'ilm.explain_lifecycle.Request': 'ilm/explain_lifecycle/ExplainLifecycleRequest.ts#L24-L65', +'ilm.explain_lifecycle.Request': 'ilm/explain_lifecycle/ExplainLifecycleRequest.ts#L24-L66', 'ilm.explain_lifecycle.Response': 'ilm/explain_lifecycle/ExplainLifecycleResponse.ts#L24-L28', 'ilm.get_lifecycle.Lifecycle': 'ilm/get_lifecycle/types.ts#L24-L28', -'ilm.get_lifecycle.Request': 'ilm/get_lifecycle/GetLifecycleRequest.ts#L24-L62', +'ilm.get_lifecycle.Request': 'ilm/get_lifecycle/GetLifecycleRequest.ts#L24-L63', 'ilm.get_lifecycle.Response': 'ilm/get_lifecycle/GetLifecycleResponse.ts#L23-L26', -'ilm.get_status.Request': 'ilm/get_status/GetIlmStatusRequest.ts#L22-L38', +'ilm.get_status.Request': 'ilm/get_status/GetIlmStatusRequest.ts#L23-L40', 'ilm.get_status.Response': 'ilm/get_status/GetIlmStatusResponse.ts#L22-L24', -'ilm.migrate_to_data_tiers.Request': 'ilm/migrate_to_data_tiers/Request.ts#L23-L70', +'ilm.migrate_to_data_tiers.Request': 'ilm/migrate_to_data_tiers/Request.ts#L24-L73', 'ilm.migrate_to_data_tiers.Response': 'ilm/migrate_to_data_tiers/Response.ts#L22-L51', -'ilm.move_to_step.Request': 'ilm/move_to_step/MoveToStepRequest.ts#L24-L65', +'ilm.move_to_step.Request': 'ilm/move_to_step/MoveToStepRequest.ts#L24-L68', 'ilm.move_to_step.Response': 'ilm/move_to_step/MoveToStepResponse.ts#L22-L25', 'ilm.move_to_step.StepKey': 'ilm/move_to_step/types.ts#L20-L31', -'ilm.put_lifecycle.Request': 'ilm/put_lifecycle/PutLifecycleRequest.ts#L25-L67', +'ilm.put_lifecycle.Request': 'ilm/put_lifecycle/PutLifecycleRequest.ts#L25-L69', 'ilm.put_lifecycle.Response': 'ilm/put_lifecycle/PutLifecycleResponse.ts#L22-L25', -'ilm.remove_policy.Request': 'ilm/remove_policy/RemovePolicyRequest.ts#L23-L43', +'ilm.remove_policy.Request': 'ilm/remove_policy/RemovePolicyRequest.ts#L23-L45', 'ilm.remove_policy.Response': 'ilm/remove_policy/RemovePolicyResponse.ts#L22-L27', -'ilm.retry.Request': 'ilm/retry/RetryIlmRequest.ts#L23-L44', +'ilm.retry.Request': 'ilm/retry/RetryIlmRequest.ts#L23-L46', 'ilm.retry.Response': 'ilm/retry/RetryIlmResponse.ts#L22-L25', -'ilm.start.Request': 'ilm/start/StartIlmRequest.ts#L23-L53', +'ilm.start.Request': 'ilm/start/StartIlmRequest.ts#L24-L55', 'ilm.start.Response': 'ilm/start/StartIlmResponse.ts#L22-L25', -'ilm.stop.Request': 'ilm/stop/StopIlmRequest.ts#L23-L55', +'ilm.stop.Request': 'ilm/stop/StopIlmRequest.ts#L24-L57', 'ilm.stop.Response': 'ilm/stop/StopIlmResponse.ts#L22-L25', 'indices._types.Alias': 'indices/_types/Alias.ts#L23-L53', 'indices._types.AliasDefinition': 'indices/_types/AliasDefinition.ts#L22-L54', -'indices._types.CacheQueries': 'indices/_types/IndexSettings.ts#L434-L436', +'indices._types.CacheQueries': 'indices/_types/IndexSettings.ts#L441-L443', 'indices._types.DataStream': 'indices/_types/DataStream.ts#L55-L151', 'indices._types.DataStreamFailureStore': 'indices/_types/DataStreamFailureStore.ts#L22-L37', 'indices._types.DataStreamFailureStoreTemplate': 'indices/_types/DataStreamFailureStore.ts#L39-L54', 'indices._types.DataStreamIndex': 'indices/_types/DataStream.ts#L160-L185', 'indices._types.DataStreamLifecycle': 'indices/_types/DataStreamLifecycle.ts#L25-L45', -'indices._types.DataStreamLifecycleDownsampling': 'indices/_types/DataStreamLifecycleDownsampling.ts#L22-L27', 'indices._types.DataStreamLifecycleRolloverConditions': 'indices/_types/DataStreamLifecycle.ts#L60-L72', 'indices._types.DataStreamLifecycleWithRollover': 'indices/_types/DataStreamLifecycle.ts#L47-L58', 'indices._types.DataStreamOptions': 'indices/_types/DataStreamOptions.ts#L25-L34', @@ -1552,223 +1551,223 @@ 'indices._types.FailureStoreLifecycle': 'indices/_types/DataStreamFailureStore.ts#L56-L72', 'indices._types.FailureStoreLifecycleTemplate': 'indices/_types/DataStreamFailureStore.ts#L74-L90', 'indices._types.FielddataFrequencyFilter': 'indices/_types/FielddataFrequencyFilter.ts#L22-L26', -'indices._types.IndexCheckOnStartup': 'indices/_types/IndexSettings.ts#L283-L290', +'indices._types.IndexCheckOnStartup': 'indices/_types/IndexSettings.ts#L289-L296', 'indices._types.IndexMode': 'indices/_types/DataStream.ts#L42-L47', 'indices._types.IndexRouting': 'indices/_types/IndexRouting.ts#L22-L25', 'indices._types.IndexRoutingAllocation': 'indices/_types/IndexRouting.ts#L27-L32', -'indices._types.IndexRoutingAllocationDisk': 'indices/_types/IndexRouting.ts#L62-L64', +'indices._types.IndexRoutingAllocationDisk': 'indices/_types/IndexRouting.ts#L62-L65', 'indices._types.IndexRoutingAllocationInclude': 'indices/_types/IndexRouting.ts#L52-L55', 'indices._types.IndexRoutingAllocationInitialRecovery': 'indices/_types/IndexRouting.ts#L57-L59', 'indices._types.IndexRoutingAllocationOptions': 'indices/_types/IndexRouting.ts#L38-L43', 'indices._types.IndexRoutingRebalance': 'indices/_types/IndexRouting.ts#L34-L36', 'indices._types.IndexRoutingRebalanceOptions': 'indices/_types/IndexRouting.ts#L45-L50', 'indices._types.IndexSegmentSort': 'indices/_types/IndexSegmentSort.ts#L22-L27', -'indices._types.IndexSettingBlocks': 'indices/_types/IndexSettings.ts#L264-L270', -'indices._types.IndexSettings': 'indices/_types/IndexSettings.ts#L70-L178', -'indices._types.IndexSettingsAnalysis': 'indices/_types/IndexSettings.ts#L346-L352', -'indices._types.IndexSettingsLifecycle': 'indices/_types/IndexSettings.ts#L297-L336', -'indices._types.IndexSettingsLifecycleStep': 'indices/_types/IndexSettings.ts#L338-L344', -'indices._types.IndexSettingsTimeSeries': 'indices/_types/IndexSettings.ts#L354-L357', +'indices._types.IndexSettingBlocks': 'indices/_types/IndexSettings.ts#L270-L276', +'indices._types.IndexSettings': 'indices/_types/IndexSettings.ts#L70-L184', +'indices._types.IndexSettingsAnalysis': 'indices/_types/IndexSettings.ts#L353-L359', +'indices._types.IndexSettingsLifecycle': 'indices/_types/IndexSettings.ts#L303-L343', +'indices._types.IndexSettingsLifecycleStep': 'indices/_types/IndexSettings.ts#L345-L351', +'indices._types.IndexSettingsTimeSeries': 'indices/_types/IndexSettings.ts#L361-L364', 'indices._types.IndexState': 'indices/_types/IndexState.ts#L27-L40', 'indices._types.IndexTemplate': 'indices/_types/IndexTemplate.ts#L30-L107', 'indices._types.IndexTemplateDataStreamConfiguration': 'indices/_types/IndexTemplate.ts#L109-L120', 'indices._types.IndexTemplateSummary': 'indices/_types/IndexTemplate.ts#L122-L149', -'indices._types.IndexVersioning': 'indices/_types/IndexSettings.ts#L292-L295', -'indices._types.IndexingPressure': 'indices/_types/IndexSettings.ts#L590-L592', -'indices._types.IndexingPressureMemory': 'indices/_types/IndexSettings.ts#L594-L601', -'indices._types.IndexingSlowlogSettings': 'indices/_types/IndexSettings.ts#L603-L608', -'indices._types.IndexingSlowlogTresholds': 'indices/_types/IndexSettings.ts#L610-L617', -'indices._types.IndicesBlockOptions': 'indices/_types/IndexSettings.ts#L272-L281', +'indices._types.IndexVersioning': 'indices/_types/IndexSettings.ts#L298-L301', +'indices._types.IndexingPressure': 'indices/_types/IndexSettings.ts#L600-L602', +'indices._types.IndexingPressureMemory': 'indices/_types/IndexSettings.ts#L604-L611', +'indices._types.IndexingSlowlogSettings': 'indices/_types/IndexSettings.ts#L613-L618', +'indices._types.IndexingSlowlogTresholds': 'indices/_types/IndexSettings.ts#L620-L627', +'indices._types.IndicesBlockOptions': 'indices/_types/IndexSettings.ts#L278-L287', 'indices._types.ManagedBy': 'indices/_types/DataStream.ts#L34-L39', -'indices._types.MappingLimitSettings': 'indices/_types/IndexSettings.ts#L438-L452', -'indices._types.MappingLimitSettingsDepth': 'indices/_types/IndexSettings.ts#L473-L480', -'indices._types.MappingLimitSettingsDimensionFields': 'indices/_types/IndexSettings.ts#L510-L516', -'indices._types.MappingLimitSettingsFieldNameLength': 'indices/_types/IndexSettings.ts#L501-L508', -'indices._types.MappingLimitSettingsNestedFields': 'indices/_types/IndexSettings.ts#L482-L490', -'indices._types.MappingLimitSettingsNestedObjects': 'indices/_types/IndexSettings.ts#L492-L499', -'indices._types.MappingLimitSettingsSourceFields': 'indices/_types/IndexSettings.ts#L518-L520', -'indices._types.MappingLimitSettingsTotalFields': 'indices/_types/IndexSettings.ts#L454-L471', -'indices._types.Merge': 'indices/_types/IndexSettings.ts#L359-L361', -'indices._types.MergeScheduler': 'indices/_types/IndexSettings.ts#L363-L366', +'indices._types.MappingLimitSettings': 'indices/_types/IndexSettings.ts#L445-L460', +'indices._types.MappingLimitSettingsDepth': 'indices/_types/IndexSettings.ts#L483-L490', +'indices._types.MappingLimitSettingsDimensionFields': 'indices/_types/IndexSettings.ts#L520-L526', +'indices._types.MappingLimitSettingsFieldNameLength': 'indices/_types/IndexSettings.ts#L511-L518', +'indices._types.MappingLimitSettingsNestedFields': 'indices/_types/IndexSettings.ts#L492-L500', +'indices._types.MappingLimitSettingsNestedObjects': 'indices/_types/IndexSettings.ts#L502-L509', +'indices._types.MappingLimitSettingsSourceFields': 'indices/_types/IndexSettings.ts#L528-L530', +'indices._types.MappingLimitSettingsTotalFields': 'indices/_types/IndexSettings.ts#L462-L481', +'indices._types.Merge': 'indices/_types/IndexSettings.ts#L366-L368', +'indices._types.MergeScheduler': 'indices/_types/IndexSettings.ts#L370-L373', 'indices._types.NumericFielddata': 'indices/_types/NumericFielddata.ts#L22-L24', 'indices._types.NumericFielddataFormat': 'indices/_types/NumericFielddataFormat.ts#L20-L23', -'indices._types.Queries': 'indices/_types/IndexSettings.ts#L430-L432', +'indices._types.Queries': 'indices/_types/IndexSettings.ts#L437-L439', 'indices._types.RetentionLease': 'indices/_types/IndexSettings.ts#L66-L68', -'indices._types.SearchIdle': 'indices/_types/IndexSettings.ts#L255-L258', +'indices._types.SearchIdle': 'indices/_types/IndexSettings.ts#L261-L264', 'indices._types.SegmentSortMissing': 'indices/_types/IndexSegmentSort.ts#L43-L46', 'indices._types.SegmentSortMode': 'indices/_types/IndexSegmentSort.ts#L36-L41', 'indices._types.SegmentSortOrder': 'indices/_types/IndexSegmentSort.ts#L29-L34', -'indices._types.SettingsAnalyze': 'indices/_types/IndexSettings.ts#L245-L248', -'indices._types.SettingsHighlight': 'indices/_types/IndexSettings.ts#L240-L243', -'indices._types.SettingsQueryString': 'indices/_types/IndexSettings.ts#L260-L262', -'indices._types.SettingsSearch': 'indices/_types/IndexSettings.ts#L250-L253', -'indices._types.SettingsSimilarity': 'indices/_types/IndexSettings.ts#L180-L192', -'indices._types.SettingsSimilarityBm25': 'indices/_types/IndexSettings.ts#L198-L203', -'indices._types.SettingsSimilarityBoolean': 'indices/_types/IndexSettings.ts#L194-L196', -'indices._types.SettingsSimilarityDfi': 'indices/_types/IndexSettings.ts#L205-L208', -'indices._types.SettingsSimilarityDfr': 'indices/_types/IndexSettings.ts#L210-L215', -'indices._types.SettingsSimilarityIb': 'indices/_types/IndexSettings.ts#L217-L222', -'indices._types.SettingsSimilarityLmd': 'indices/_types/IndexSettings.ts#L224-L227', -'indices._types.SettingsSimilarityLmj': 'indices/_types/IndexSettings.ts#L229-L232', -'indices._types.SettingsSimilarityScripted': 'indices/_types/IndexSettings.ts#L234-L238', -'indices._types.SlowlogSettings': 'indices/_types/IndexSettings.ts#L528-L533', -'indices._types.SlowlogTresholdLevels': 'indices/_types/IndexSettings.ts#L540-L545', -'indices._types.SlowlogTresholds': 'indices/_types/IndexSettings.ts#L535-L538', +'indices._types.SettingsAnalyze': 'indices/_types/IndexSettings.ts#L251-L254', +'indices._types.SettingsHighlight': 'indices/_types/IndexSettings.ts#L246-L249', +'indices._types.SettingsQueryString': 'indices/_types/IndexSettings.ts#L266-L268', +'indices._types.SettingsSearch': 'indices/_types/IndexSettings.ts#L256-L259', +'indices._types.SettingsSimilarity': 'indices/_types/IndexSettings.ts#L186-L198', +'indices._types.SettingsSimilarityBm25': 'indices/_types/IndexSettings.ts#L204-L209', +'indices._types.SettingsSimilarityBoolean': 'indices/_types/IndexSettings.ts#L200-L202', +'indices._types.SettingsSimilarityDfi': 'indices/_types/IndexSettings.ts#L211-L214', +'indices._types.SettingsSimilarityDfr': 'indices/_types/IndexSettings.ts#L216-L221', +'indices._types.SettingsSimilarityIb': 'indices/_types/IndexSettings.ts#L223-L228', +'indices._types.SettingsSimilarityLmd': 'indices/_types/IndexSettings.ts#L230-L233', +'indices._types.SettingsSimilarityLmj': 'indices/_types/IndexSettings.ts#L235-L238', +'indices._types.SettingsSimilarityScripted': 'indices/_types/IndexSettings.ts#L240-L244', +'indices._types.SlowlogSettings': 'indices/_types/IndexSettings.ts#L538-L543', +'indices._types.SlowlogTresholdLevels': 'indices/_types/IndexSettings.ts#L550-L555', +'indices._types.SlowlogTresholds': 'indices/_types/IndexSettings.ts#L545-L548', 'indices._types.SoftDeletes': 'indices/_types/IndexSettings.ts#L51-L64', -'indices._types.SourceMode': 'indices/_types/IndexSettings.ts#L522-L526', -'indices._types.Storage': 'indices/_types/IndexSettings.ts#L547-L558', -'indices._types.StorageType': 'indices/_types/IndexSettings.ts#L560-L588', +'indices._types.SourceMode': 'indices/_types/IndexSettings.ts#L532-L536', +'indices._types.Storage': 'indices/_types/IndexSettings.ts#L557-L568', +'indices._types.StorageType': 'indices/_types/IndexSettings.ts#L570-L598', 'indices._types.TemplateMapping': 'indices/_types/TemplateMapping.ts#L27-L34', -'indices._types.Translog': 'indices/_types/IndexSettings.ts#L368-L390', -'indices._types.TranslogDurability': 'indices/_types/IndexSettings.ts#L392-L407', -'indices._types.TranslogRetention': 'indices/_types/IndexSettings.ts#L409-L428', +'indices._types.Translog': 'indices/_types/IndexSettings.ts#L375-L397', +'indices._types.TranslogDurability': 'indices/_types/IndexSettings.ts#L399-L414', +'indices._types.TranslogRetention': 'indices/_types/IndexSettings.ts#L416-L435', 'indices.add_block.AddIndicesBlockStatus': 'indices/add_block/IndicesAddBlockResponse.ts#L30-L33', -'indices.add_block.Request': 'indices/add_block/IndicesAddBlockRequest.ts#L25-L90', +'indices.add_block.Request': 'indices/add_block/IndicesAddBlockRequest.ts#L25-L91', 'indices.add_block.Response': 'indices/add_block/IndicesAddBlockResponse.ts#L22-L28', 'indices.analyze.AnalyzeDetail': 'indices/analyze/types.ts#L24-L30', 'indices.analyze.AnalyzeToken': 'indices/analyze/types.ts#L37-L44', 'indices.analyze.AnalyzerDetail': 'indices/analyze/types.ts#L32-L35', 'indices.analyze.CharFilterDetail': 'indices/analyze/types.ts#L46-L49', 'indices.analyze.ExplainAnalyzeToken': 'indices/analyze/types.ts#L52-L67', -'indices.analyze.Request': 'indices/analyze/IndicesAnalyzeRequest.ts#L27-L120', +'indices.analyze.Request': 'indices/analyze/IndicesAnalyzeRequest.ts#L27-L122', 'indices.analyze.Response': 'indices/analyze/IndicesAnalyzeResponse.ts#L22-L27', 'indices.analyze.TokenDetail': 'indices/analyze/types.ts#L71-L74', -'indices.cancel_migrate_reindex.Request': 'indices/cancel_migrate_reindex/MigrateCancelReindexRequest.ts#L23-L44', +'indices.cancel_migrate_reindex.Request': 'indices/cancel_migrate_reindex/MigrateCancelReindexRequest.ts#L23-L46', 'indices.cancel_migrate_reindex.Response': 'indices/cancel_migrate_reindex/MigrateCancelReindexResponse.ts#L22-L25', -'indices.clear_cache.Request': 'indices/clear_cache/IndicesClearCacheRequest.ts#L23-L100', +'indices.clear_cache.Request': 'indices/clear_cache/IndicesClearCacheRequest.ts#L23-L101', 'indices.clear_cache.Response': 'indices/clear_cache/IndicesClearCacheResponse.ts#L22-L25', -'indices.clone.Request': 'indices/clone/IndicesCloneRequest.ts#L27-L128', +'indices.clone.Request': 'indices/clone/IndicesCloneRequest.ts#L27-L130', 'indices.clone.Response': 'indices/clone/IndicesCloneResponse.ts#L22-L28', 'indices.close.CloseIndexResult': 'indices/close/CloseIndexResponse.ts#L32-L35', 'indices.close.CloseShardResult': 'indices/close/CloseIndexResponse.ts#L37-L39', -'indices.close.Request': 'indices/close/CloseIndexRequest.ts#L24-L101', +'indices.close.Request': 'indices/close/CloseIndexRequest.ts#L29-L107', 'indices.close.Response': 'indices/close/CloseIndexResponse.ts#L24-L30', -'indices.create.Request': 'indices/create/IndicesCreateRequest.ts#L28-L116', +'indices.create.Request': 'indices/create/IndicesCreateRequest.ts#L28-L118', 'indices.create.Response': 'indices/create/IndicesCreateResponse.ts#L22-L28', -'indices.create_data_stream.Request': 'indices/create_data_stream/IndicesCreateDataStreamRequest.ts#L24-L65', +'indices.create_data_stream.Request': 'indices/create_data_stream/IndicesCreateDataStreamRequest.ts#L24-L66', 'indices.create_data_stream.Response': 'indices/create_data_stream/IndicesCreateDataStreamResponse.ts#L22-L25', -'indices.create_from.CreateFrom': 'indices/create_from/MigrateCreateFromRequest.ts#L52-L66', -'indices.create_from.Request': 'indices/create_from/MigrateCreateFromRequest.ts#L25-L50', +'indices.create_from.CreateFrom': 'indices/create_from/MigrateCreateFromRequest.ts#L54-L68', +'indices.create_from.Request': 'indices/create_from/MigrateCreateFromRequest.ts#L25-L52', 'indices.create_from.Response': 'indices/create_from/MigrateCreateFromResponse.ts#L22-L28', 'indices.data_streams_stats.DataStreamsStatsItem': 'indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts#L45-L65', -'indices.data_streams_stats.Request': 'indices/data_streams_stats/IndicesDataStreamsStatsRequest.ts#L23-L61', +'indices.data_streams_stats.Request': 'indices/data_streams_stats/IndicesDataStreamsStatsRequest.ts#L23-L62', 'indices.data_streams_stats.Response': 'indices/data_streams_stats/IndicesDataStreamsStatsResponse.ts#L25-L43', -'indices.delete.Request': 'indices/delete/IndicesDeleteRequest.ts#L24-L87', +'indices.delete.Request': 'indices/delete/IndicesDeleteRequest.ts#L24-L88', 'indices.delete.Response': 'indices/delete/IndicesDeleteResponse.ts#L22-L25', 'indices.delete_alias.IndicesAliasesResponseBody': 'indices/delete_alias/IndicesDeleteAliasResponse.ts#L27-L29', -'indices.delete_alias.Request': 'indices/delete_alias/IndicesDeleteAliasRequest.ts#L24-L71', +'indices.delete_alias.Request': 'indices/delete_alias/IndicesDeleteAliasRequest.ts#L24-L72', 'indices.delete_alias.Response': 'indices/delete_alias/IndicesDeleteAliasResponse.ts#L22-L25', -'indices.delete_data_lifecycle.Request': 'indices/delete_data_lifecycle/IndicesDeleteDataLifecycleRequest.ts#L24-L55', +'indices.delete_data_lifecycle.Request': 'indices/delete_data_lifecycle/IndicesDeleteDataLifecycleRequest.ts#L24-L66', 'indices.delete_data_lifecycle.Response': 'indices/delete_data_lifecycle/IndicesDeleteDataLifecycleResponse.ts#L22-L25', -'indices.delete_data_stream.Request': 'indices/delete_data_stream/IndicesDeleteDataStreamRequest.ts#L24-L60', +'indices.delete_data_stream.Request': 'indices/delete_data_stream/IndicesDeleteDataStreamRequest.ts#L24-L61', 'indices.delete_data_stream.Response': 'indices/delete_data_stream/IndicesDeleteDataStreamResponse.ts#L22-L25', -'indices.delete_data_stream_options.Request': 'indices/delete_data_stream_options/IndicesDeleteDataStreamOptionsRequest.ts#L24-L55', +'indices.delete_data_stream_options.Request': 'indices/delete_data_stream_options/IndicesDeleteDataStreamOptionsRequest.ts#L24-L66', 'indices.delete_data_stream_options.Response': 'indices/delete_data_stream_options/IndicesDeleteDataStreamOptionsResponse.ts#L22-L25', -'indices.delete_index_template.Request': 'indices/delete_index_template/IndicesDeleteIndexTemplateRequest.ts#L24-L61', +'indices.delete_index_template.Request': 'indices/delete_index_template/IndicesDeleteIndexTemplateRequest.ts#L24-L62', 'indices.delete_index_template.Response': 'indices/delete_index_template/IndicesDeleteIndexTemplateResponse.ts#L22-L25', -'indices.delete_template.Request': 'indices/delete_template/IndicesDeleteTemplateRequest.ts#L24-L62', +'indices.delete_template.Request': 'indices/delete_template/IndicesDeleteTemplateRequest.ts#L24-L63', 'indices.delete_template.Response': 'indices/delete_template/IndicesDeleteTemplateResponse.ts#L22-L25', -'indices.disk_usage.Request': 'indices/disk_usage/IndicesDiskUsageRequest.ts#L23-L88', +'indices.disk_usage.Request': 'indices/disk_usage/IndicesDiskUsageRequest.ts#L23-L89', 'indices.disk_usage.Response': 'indices/disk_usage/IndicesDiskUsageResponse.ts#L22-L25', -'indices.downsample.Request': 'indices/downsample/Request.ts#L24-L59', +'indices.downsample.Request': 'indices/downsample/Request.ts#L24-L61', 'indices.downsample.Response': 'indices/downsample/Response.ts#L22-L25', -'indices.exists.Request': 'indices/exists/IndicesExistsRequest.ts#L23-L80', -'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L24-L81', -'indices.exists_index_template.Request': 'indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts#L24-L62', -'indices.exists_template.Request': 'indices/exists_template/IndicesExistsTemplateRequest.ts#L24-L71', +'indices.exists.Request': 'indices/exists/IndicesExistsRequest.ts#L23-L81', +'indices.exists_alias.Request': 'indices/exists_alias/IndicesExistsAliasRequest.ts#L24-L82', +'indices.exists_index_template.Request': 'indices/exists_index_template/IndicesExistsIndexTemplateRequest.ts#L24-L63', +'indices.exists_template.Request': 'indices/exists_template/IndicesExistsTemplateRequest.ts#L24-L72', 'indices.explain_data_lifecycle.DataStreamLifecycleExplain': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleResponse.ts#L31-L41', -'indices.explain_data_lifecycle.Request': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleRequest.ts#L24-L52', +'indices.explain_data_lifecycle.Request': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleRequest.ts#L24-L59', 'indices.explain_data_lifecycle.Response': 'indices/explain_data_lifecycle/IndicesExplainDataLifecycleResponse.ts#L25-L29', 'indices.field_usage_stats.FieldSummary': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L58-L67', 'indices.field_usage_stats.FieldsUsageBody': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L33-L40', 'indices.field_usage_stats.InvertedIndex': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L69-L77', -'indices.field_usage_stats.Request': 'indices/field_usage_stats/IndicesFieldUsageStatsRequest.ts#L23-L75', +'indices.field_usage_stats.Request': 'indices/field_usage_stats/IndicesFieldUsageStatsRequest.ts#L23-L76', 'indices.field_usage_stats.Response': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L28-L31', 'indices.field_usage_stats.ShardsStats': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L53-L56', 'indices.field_usage_stats.UsageStatsIndex': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L42-L44', 'indices.field_usage_stats.UsageStatsShards': 'indices/field_usage_stats/IndicesFieldUsageStatsResponse.ts#L46-L51', -'indices.flush.Request': 'indices/flush/IndicesFlushRequest.ts#L23-L92', +'indices.flush.Request': 'indices/flush/IndicesFlushRequest.ts#L23-L93', 'indices.flush.Response': 'indices/flush/IndicesFlushResponse.ts#L22-L25', -'indices.forcemerge.Request': 'indices/forcemerge/IndicesForceMergeRequest.ts#L24-L115', +'indices.forcemerge.Request': 'indices/forcemerge/IndicesForceMergeRequest.ts#L24-L139', 'indices.forcemerge.Response': 'indices/forcemerge/IndicesForceMergeResponse.ts#L22-L25', 'indices.forcemerge._types.ForceMergeResponseBody': 'indices/forcemerge/_types/response.ts#L22-L28', -'indices.get.Feature': 'indices/get/IndicesGetRequest.ts#L99-L103', -'indices.get.Request': 'indices/get/IndicesGetRequest.ts#L24-L97', +'indices.get.Feature': 'indices/get/IndicesGetRequest.ts#L100-L104', +'indices.get.Request': 'indices/get/IndicesGetRequest.ts#L24-L98', 'indices.get.Response': 'indices/get/IndicesGetResponse.ts#L24-L27', -'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L24-L93', -'indices.get_alias.Response': 'indices/get_alias/IndicesGetAliasResponse.ts#L28-L37', +'indices.get_alias.Request': 'indices/get_alias/IndicesGetAliasRequest.ts#L24-L94', +'indices.get_alias.Response': 'indices/get_alias/IndicesGetAliasResponse.ts#L28-L38', 'indices.get_alias._types.IndexAliases': 'indices/get_alias/_types/response.ts#L25-L27', 'indices.get_data_lifecycle.DataStreamWithLifecycle': 'indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L27-L30', -'indices.get_data_lifecycle.Request': 'indices/get_data_lifecycle/IndicesGetDataLifecycleRequest.ts#L24-L68', +'indices.get_data_lifecycle.Request': 'indices/get_data_lifecycle/IndicesGetDataLifecycleRequest.ts#L24-L69', 'indices.get_data_lifecycle.Response': 'indices/get_data_lifecycle/IndicesGetDataLifecycleResponse.ts#L23-L25', 'indices.get_data_lifecycle_stats.DataStreamStats': 'indices/get_data_lifecycle_stats/IndicesGetDataLifecycleStatsResponse.ts#L46-L59', -'indices.get_data_lifecycle_stats.Request': 'indices/get_data_lifecycle_stats/IndicesGetDataLifecycleStatsRequest.ts#L22-L40', +'indices.get_data_lifecycle_stats.Request': 'indices/get_data_lifecycle_stats/IndicesGetDataLifecycleStatsRequest.ts#L23-L42', 'indices.get_data_lifecycle_stats.Response': 'indices/get_data_lifecycle_stats/IndicesGetDataLifecycleStatsResponse.ts#L24-L44', -'indices.get_data_stream.Request': 'indices/get_data_stream/IndicesGetDataStreamRequest.ts#L24-L78', +'indices.get_data_stream.Request': 'indices/get_data_stream/IndicesGetDataStreamRequest.ts#L24-L79', 'indices.get_data_stream.Response': 'indices/get_data_stream/IndicesGetDataStreamResponse.ts#L22-L24', 'indices.get_data_stream_mappings.DataStreamMappings': 'indices/get_data_stream_mappings/IndicesGetDataStreamMappingsResponse.ts#L29-L39', -'indices.get_data_stream_mappings.Request': 'indices/get_data_stream_mappings/IndicesGetDataStreamMappingsRequest.ts#L24-L57', +'indices.get_data_stream_mappings.Request': 'indices/get_data_stream_mappings/IndicesGetDataStreamMappingsRequest.ts#L24-L58', 'indices.get_data_stream_mappings.Response': 'indices/get_data_stream_mappings/IndicesGetDataStreamMappingsResponse.ts#L22-L27', 'indices.get_data_stream_options.DataStreamWithOptions': 'indices/get_data_stream_options/IndicesGetDataStreamOptionsResponse.ts#L27-L30', -'indices.get_data_stream_options.Request': 'indices/get_data_stream_options/IndicesGetDataStreamOptionsRequest.ts#L24-L62', +'indices.get_data_stream_options.Request': 'indices/get_data_stream_options/IndicesGetDataStreamOptionsRequest.ts#L24-L63', 'indices.get_data_stream_options.Response': 'indices/get_data_stream_options/IndicesGetDataStreamOptionsResponse.ts#L23-L25', 'indices.get_data_stream_settings.DataStreamSettings': 'indices/get_data_stream_settings/IndicesGetDataStreamSettingsResponse.ts#L29-L39', -'indices.get_data_stream_settings.Request': 'indices/get_data_stream_settings/IndicesGetDataStreamSettingsRequest.ts#L24-L57', +'indices.get_data_stream_settings.Request': 'indices/get_data_stream_settings/IndicesGetDataStreamSettingsRequest.ts#L24-L58', 'indices.get_data_stream_settings.Response': 'indices/get_data_stream_settings/IndicesGetDataStreamSettingsResponse.ts#L22-L27', -'indices.get_field_mapping.Request': 'indices/get_field_mapping/IndicesGetFieldMappingRequest.ts#L23-L84', +'indices.get_field_mapping.Request': 'indices/get_field_mapping/IndicesGetFieldMappingRequest.ts#L23-L85', 'indices.get_field_mapping.Response': 'indices/get_field_mapping/IndicesGetFieldMappingResponse.ts#L24-L27', 'indices.get_field_mapping.TypeFieldMappings': 'indices/get_field_mapping/types.ts#L24-L26', 'indices.get_index_template.IndexTemplateItem': 'indices/get_index_template/IndicesGetIndexTemplateResponse.ts#L29-L32', -'indices.get_index_template.Request': 'indices/get_index_template/IndicesGetIndexTemplateRequest.ts#L24-L74', +'indices.get_index_template.Request': 'indices/get_index_template/IndicesGetIndexTemplateRequest.ts#L24-L75', 'indices.get_index_template.Response': 'indices/get_index_template/IndicesGetIndexTemplateResponse.ts#L23-L27', 'indices.get_mapping.IndexMappingRecord': 'indices/get_mapping/IndicesGetMappingResponse.ts#L29-L32', -'indices.get_mapping.Request': 'indices/get_mapping/IndicesGetMappingRequest.ts#L24-L85', +'indices.get_mapping.Request': 'indices/get_mapping/IndicesGetMappingRequest.ts#L24-L86', 'indices.get_mapping.Response': 'indices/get_mapping/IndicesGetMappingResponse.ts#L24-L27', -'indices.get_migrate_reindex_status.Request': 'indices/get_migrate_reindex_status/MigrateGetReindexStatusRequest.ts#L23-L44', +'indices.get_migrate_reindex_status.Request': 'indices/get_migrate_reindex_status/MigrateGetReindexStatusRequest.ts#L23-L46', 'indices.get_migrate_reindex_status.Response': 'indices/get_migrate_reindex_status/MigrateGetReindexStatusResponse.ts#L23-L36', 'indices.get_migrate_reindex_status.StatusError': 'indices/get_migrate_reindex_status/MigrateGetReindexStatusResponse.ts#L44-L47', 'indices.get_migrate_reindex_status.StatusInProgress': 'indices/get_migrate_reindex_status/MigrateGetReindexStatusResponse.ts#L38-L42', -'indices.get_settings.Request': 'indices/get_settings/IndicesGetSettingsRequest.ts#L24-L113', +'indices.get_settings.Request': 'indices/get_settings/IndicesGetSettingsRequest.ts#L24-L114', 'indices.get_settings.Response': 'indices/get_settings/IndicesGetSettingsResponse.ts#L24-L27', -'indices.get_template.Request': 'indices/get_template/IndicesGetTemplateRequest.ts#L24-L75', +'indices.get_template.Request': 'indices/get_template/IndicesGetTemplateRequest.ts#L24-L76', 'indices.get_template.Response': 'indices/get_template/IndicesGetTemplateResponse.ts#L23-L26', -'indices.migrate_reindex.MigrateReindex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L45-L54', -'indices.migrate_reindex.ModeEnum': 'indices/migrate_reindex/MigrateReindexRequest.ts#L60-L62', -'indices.migrate_reindex.Request': 'indices/migrate_reindex/MigrateReindexRequest.ts#L23-L43', +'indices.migrate_reindex.MigrateReindex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L47-L56', +'indices.migrate_reindex.ModeEnum': 'indices/migrate_reindex/MigrateReindexRequest.ts#L62-L64', +'indices.migrate_reindex.Request': 'indices/migrate_reindex/MigrateReindexRequest.ts#L23-L45', 'indices.migrate_reindex.Response': 'indices/migrate_reindex/MigrateReindexResponse.ts#L22-L25', -'indices.migrate_reindex.SourceIndex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L56-L58', -'indices.migrate_to_data_stream.Request': 'indices/migrate_to_data_stream/IndicesMigrateToDataStreamRequest.ts#L24-L67', +'indices.migrate_reindex.SourceIndex': 'indices/migrate_reindex/MigrateReindexRequest.ts#L58-L60', +'indices.migrate_to_data_stream.Request': 'indices/migrate_to_data_stream/IndicesMigrateToDataStreamRequest.ts#L24-L68', 'indices.migrate_to_data_stream.Response': 'indices/migrate_to_data_stream/IndicesMigrateToDataStreamResponse.ts#L22-L25', 'indices.modify_data_stream.Action': 'indices/modify_data_stream/types.ts#L22-L37', 'indices.modify_data_stream.IndexAndDataStreamAction': 'indices/modify_data_stream/types.ts#L39-L44', -'indices.modify_data_stream.Request': 'indices/modify_data_stream/IndicesModifyDataStreamRequest.ts#L23-L46', +'indices.modify_data_stream.Request': 'indices/modify_data_stream/IndicesModifyDataStreamRequest.ts#L24-L49', 'indices.modify_data_stream.Response': 'indices/modify_data_stream/IndicesModifyDataStreamResponse.ts#L22-L25', -'indices.open.Request': 'indices/open/IndicesOpenRequest.ts#L24-L111', +'indices.open.Request': 'indices/open/IndicesOpenRequest.ts#L29-L117', 'indices.open.Response': 'indices/open/IndicesOpenResponse.ts#L20-L25', -'indices.promote_data_stream.Request': 'indices/promote_data_stream/IndicesPromoteDataStreamRequest.ts#L24-L59', +'indices.promote_data_stream.Request': 'indices/promote_data_stream/IndicesPromoteDataStreamRequest.ts#L24-L61', 'indices.promote_data_stream.Response': 'indices/promote_data_stream/IndicesPromoteDataStreamResponse.ts#L22-L25', -'indices.put_alias.Request': 'indices/put_alias/IndicesPutAliasRequest.ts#L25-L105', +'indices.put_alias.Request': 'indices/put_alias/IndicesPutAliasRequest.ts#L25-L107', 'indices.put_alias.Response': 'indices/put_alias/IndicesPutAliasResponse.ts#L22-L25', -'indices.put_data_lifecycle.Request': 'indices/put_data_lifecycle/IndicesPutDataLifecycleRequest.ts#L25-L94', +'indices.put_data_lifecycle.Request': 'indices/put_data_lifecycle/IndicesPutDataLifecycleRequest.ts#L25-L96', 'indices.put_data_lifecycle.Response': 'indices/put_data_lifecycle/IndicesPutDataLifecycleResponse.ts#L22-L25', -'indices.put_data_stream_mappings.Request': 'indices/put_data_stream_mappings/IndicesPutDataStreamMappingsRequest.ts#L25-L76', +'indices.put_data_stream_mappings.Request': 'indices/put_data_stream_mappings/IndicesPutDataStreamMappingsRequest.ts#L25-L78', 'indices.put_data_stream_mappings.Response': 'indices/put_data_stream_mappings/IndicesPutDataStreamMappingsResponse.ts#L23-L28', 'indices.put_data_stream_mappings.UpdatedDataStreamMappings': 'indices/put_data_stream_mappings/IndicesPutDataStreamMappingsResponse.ts#L30-L51', -'indices.put_data_stream_options.Request': 'indices/put_data_stream_options/IndicesPutDataStreamOptionsRequest.ts#L25-L81', +'indices.put_data_stream_options.Request': 'indices/put_data_stream_options/IndicesPutDataStreamOptionsRequest.ts#L25-L83', 'indices.put_data_stream_options.Response': 'indices/put_data_stream_options/IndicesPutDataStreamOptionsResponse.ts#L22-L25', 'indices.put_data_stream_settings.DataStreamSettingsError': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsResponse.ts#L71-L77', 'indices.put_data_stream_settings.IndexSettingResults': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsResponse.ts#L57-L69', -'indices.put_data_stream_settings.Request': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsRequest.ts#L25-L77', +'indices.put_data_stream_settings.Request': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsRequest.ts#L25-L79', 'indices.put_data_stream_settings.Response': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsResponse.ts#L23-L28', 'indices.put_data_stream_settings.UpdatedDataStreamSettings': 'indices/put_data_stream_settings/IndicesPutDataStreamSettingsResponse.ts#L30-L55', -'indices.put_index_template.IndexTemplateMapping': 'indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L162-L184', -'indices.put_index_template.Request': 'indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L37-L160', +'indices.put_index_template.IndexTemplateMapping': 'indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L166-L188', +'indices.put_index_template.Request': 'indices/put_index_template/IndicesPutIndexTemplateRequest.ts#L38-L164', 'indices.put_index_template.Response': 'indices/put_index_template/IndicesPutIndexTemplateResponse.ts#L22-L25', -'indices.put_mapping.Request': 'indices/put_mapping/IndicesPutMappingRequest.ts#L41-L165', +'indices.put_mapping.Request': 'indices/put_mapping/IndicesPutMappingRequest.ts#L42-L172', 'indices.put_mapping.Response': 'indices/put_mapping/IndicesPutMappingResponse.ts#L22-L25', -'indices.put_settings.Request': 'indices/put_settings/IndicesPutSettingsRequest.ts#L25-L166', +'indices.put_settings.Request': 'indices/put_settings/IndicesPutSettingsRequest.ts#L25-L169', 'indices.put_settings.Response': 'indices/put_settings/IndicesPutSettingsResponse.ts#L22-L25', -'indices.put_template.Request': 'indices/put_template/IndicesPutTemplateRequest.ts#L29-L127', +'indices.put_template.Request': 'indices/put_template/IndicesPutTemplateRequest.ts#L29-L131', 'indices.put_template.Response': 'indices/put_template/IndicesPutTemplateResponse.ts#L22-L25', 'indices.recovery.FileDetails': 'indices/recovery/types.ts#L50-L54', 'indices.recovery.RecoveryBytes': 'indices/recovery/types.ts#L38-L48', @@ -1777,39 +1776,39 @@ 'indices.recovery.RecoveryOrigin': 'indices/recovery/types.ts#L76-L89', 'indices.recovery.RecoveryStartStatus': 'indices/recovery/types.ts#L91-L96', 'indices.recovery.RecoveryStatus': 'indices/recovery/types.ts#L98-L100', -'indices.recovery.Request': 'indices/recovery/IndicesRecoveryRequest.ts#L23-L103', +'indices.recovery.Request': 'indices/recovery/IndicesRecoveryRequest.ts#L23-L104', 'indices.recovery.Response': 'indices/recovery/IndicesRecoveryResponse.ts#L24-L27', 'indices.recovery.ShardRecovery': 'indices/recovery/types.ts#L118-L135', 'indices.recovery.TranslogStatus': 'indices/recovery/types.ts#L102-L109', 'indices.recovery.VerifyIndex': 'indices/recovery/types.ts#L111-L116', -'indices.refresh.Request': 'indices/refresh/IndicesRefreshRequest.ts#L23-L86', +'indices.refresh.Request': 'indices/refresh/IndicesRefreshRequest.ts#L23-L87', 'indices.refresh.Response': 'indices/refresh/IndicesRefreshResponse.ts#L22-L25', 'indices.reload_search_analyzers.ReloadDetails': 'indices/reload_search_analyzers/types.ts#L27-L31', 'indices.reload_search_analyzers.ReloadResult': 'indices/reload_search_analyzers/types.ts#L22-L25', -'indices.reload_search_analyzers.Request': 'indices/reload_search_analyzers/ReloadSearchAnalyzersRequest.ts#L23-L65', +'indices.reload_search_analyzers.Request': 'indices/reload_search_analyzers/ReloadSearchAnalyzersRequest.ts#L23-L77', 'indices.reload_search_analyzers.Response': 'indices/reload_search_analyzers/ReloadSearchAnalyzersResponse.ts#L22-L25', 'indices.remove_block.RemoveIndicesBlockStatus': 'indices/remove_block/IndicesRemoveBlockResponse.ts#L30-L34', -'indices.remove_block.Request': 'indices/remove_block/IndicesRemoveBlockRequest.ts#L25-L91', +'indices.remove_block.Request': 'indices/remove_block/IndicesRemoveBlockRequest.ts#L25-L92', 'indices.remove_block.Response': 'indices/remove_block/IndicesRemoveBlockResponse.ts#L23-L28', -'indices.resolve_cluster.Request': 'indices/resolve_cluster/ResolveClusterRequest.ts#L24-L143', +'indices.resolve_cluster.Request': 'indices/resolve_cluster/ResolveClusterRequest.ts#L24-L144', 'indices.resolve_cluster.ResolveClusterInfo': 'indices/resolve_cluster/ResolveClusterResponse.ts#L29-L55', 'indices.resolve_cluster.Response': 'indices/resolve_cluster/ResolveClusterResponse.ts#L24-L27', -'indices.resolve_index.Request': 'indices/resolve_index/ResolveIndexRequest.ts#L24-L88', +'indices.resolve_index.Request': 'indices/resolve_index/ResolveIndexRequest.ts#L29-L94', 'indices.resolve_index.ResolveIndexAliasItem': 'indices/resolve_index/ResolveIndexResponse.ts#L39-L42', 'indices.resolve_index.ResolveIndexDataStreamsItem': 'indices/resolve_index/ResolveIndexResponse.ts#L44-L48', 'indices.resolve_index.ResolveIndexItem': 'indices/resolve_index/ResolveIndexResponse.ts#L31-L37', 'indices.resolve_index.Response': 'indices/resolve_index/ResolveIndexResponse.ts#L23-L29', -'indices.rollover.Request': 'indices/rollover/IndicesRolloverRequest.ts#L29-L154', +'indices.rollover.Request': 'indices/rollover/IndicesRolloverRequest.ts#L34-L161', 'indices.rollover.Response': 'indices/rollover/IndicesRolloverResponse.ts#L22-L32', 'indices.rollover.RolloverConditions': 'indices/rollover/types.ts#L24-L40', 'indices.segments.IndexSegment': 'indices/segments/types.ts#L24-L26', -'indices.segments.Request': 'indices/segments/IndicesSegmentsRequest.ts#L23-L73', +'indices.segments.Request': 'indices/segments/IndicesSegmentsRequest.ts#L23-L74', 'indices.segments.Response': 'indices/segments/IndicesSegmentsResponse.ts#L24-L29', 'indices.segments.Segment': 'indices/segments/types.ts#L28-L38', 'indices.segments.ShardSegmentRouting': 'indices/segments/types.ts#L40-L44', 'indices.segments.ShardsSegment': 'indices/segments/types.ts#L46-L51', 'indices.shard_stores.IndicesShardStores': 'indices/shard_stores/types.ts#L25-L27', -'indices.shard_stores.Request': 'indices/shard_stores/IndicesShardStoresRequest.ts#L24-L83', +'indices.shard_stores.Request': 'indices/shard_stores/IndicesShardStoresRequest.ts#L24-L84', 'indices.shard_stores.Response': 'indices/shard_stores/IndicesShardStoresResponse.ts#L24-L26', 'indices.shard_stores.ShardStore': 'indices/shard_stores/types.ts#L29-L36', 'indices.shard_stores.ShardStoreAllocation': 'indices/shard_stores/types.ts#L47-L51', @@ -1817,21 +1816,21 @@ 'indices.shard_stores.ShardStoreNode': 'indices/shard_stores/types.ts#L38-L45', 'indices.shard_stores.ShardStoreStatus': 'indices/shard_stores/types.ts#L62-L71', 'indices.shard_stores.ShardStoreWrapper': 'indices/shard_stores/types.ts#L58-L60', -'indices.shrink.Request': 'indices/shrink/IndicesShrinkRequest.ts#L27-L114', +'indices.shrink.Request': 'indices/shrink/IndicesShrinkRequest.ts#L27-L116', 'indices.shrink.Response': 'indices/shrink/IndicesShrinkResponse.ts#L22-L28', -'indices.simulate_index_template.Request': 'indices/simulate_index_template/IndicesSimulateIndexTemplateRequest.ts#L25-L71', +'indices.simulate_index_template.Request': 'indices/simulate_index_template/IndicesSimulateIndexTemplateRequest.ts#L25-L74', 'indices.simulate_index_template.Response': 'indices/simulate_index_template/IndicesSimulateIndexTemplateResponse.ts#L25-L30', 'indices.simulate_template.Overlapping': 'indices/simulate_template/IndicesSimulateTemplateResponse.ts#L39-L42', -'indices.simulate_template.Request': 'indices/simulate_template/IndicesSimulateTemplateRequest.ts#L27-L137', +'indices.simulate_template.Request': 'indices/simulate_template/IndicesSimulateTemplateRequest.ts#L33-L145', 'indices.simulate_template.Response': 'indices/simulate_template/IndicesSimulateTemplateResponse.ts#L26-L31', 'indices.simulate_template.Template': 'indices/simulate_template/IndicesSimulateTemplateResponse.ts#L33-L37', -'indices.split.Request': 'indices/split/IndicesSplitRequest.ts#L27-L114', +'indices.split.Request': 'indices/split/IndicesSplitRequest.ts#L27-L116', 'indices.split.Response': 'indices/split/IndicesSplitResponse.ts#L22-L28', 'indices.stats.IndexMetadataState': 'indices/stats/types.ts#L225-L232', 'indices.stats.IndexStats': 'indices/stats/types.ts#L52-L93', 'indices.stats.IndicesStats': 'indices/stats/types.ts#L95-L110', 'indices.stats.MappingStats': 'indices/stats/types.ts#L186-L190', -'indices.stats.Request': 'indices/stats/IndicesStatsRequest.ts#L29-L116', +'indices.stats.Request': 'indices/stats/IndicesStatsRequest.ts#L30-L120', 'indices.stats.Response': 'indices/stats/IndicesStatsResponse.ts#L24-L30', 'indices.stats.ShardCommit': 'indices/stats/types.ts#L112-L117', 'indices.stats.ShardFileSizeInfo': 'indices/stats/types.ts#L124-L131', @@ -1848,10 +1847,10 @@ 'indices.update_aliases.AddAction': 'indices/update_aliases/types.ts#L41-L95', 'indices.update_aliases.RemoveAction': 'indices/update_aliases/types.ts#L97-L122', 'indices.update_aliases.RemoveIndexAction': 'indices/update_aliases/types.ts#L124-L139', -'indices.update_aliases.Request': 'indices/update_aliases/IndicesUpdateAliasesRequest.ts#L24-L60', +'indices.update_aliases.Request': 'indices/update_aliases/IndicesUpdateAliasesRequest.ts#L25-L63', 'indices.update_aliases.Response': 'indices/update_aliases/IndicesUpdateAliasesResponse.ts#L22-L25', 'indices.validate_query.IndicesValidationExplanation': 'indices/validate_query/IndicesValidateQueryResponse.ts#L32-L37', -'indices.validate_query.Request': 'indices/validate_query/IndicesValidateQueryRequest.ts#L25-L123', +'indices.validate_query.Request': 'indices/validate_query/IndicesValidateQueryRequest.ts#L25-L125', 'indices.validate_query.Response': 'indices/validate_query/IndicesValidateQueryResponse.ts#L23-L30', 'inference._types.AdaptiveAllocations': 'inference/_types/CommonTypes.ts#L99-L116', 'inference._types.Ai21ServiceSettings': 'inference/_types/CommonTypes.ts#L292-L317', @@ -2015,71 +2014,71 @@ 'inference._types.WatsonxServiceSettings': 'inference/_types/CommonTypes.ts#L1907-L1945', 'inference._types.WatsonxServiceType': 'inference/_types/CommonTypes.ts#L1953-L1955', 'inference._types.WatsonxTaskType': 'inference/_types/CommonTypes.ts#L1947-L1951', -'inference.chat_completion_unified.Request': 'inference/chat_completion_unified/UnifiedRequest.ts#L24-L61', +'inference.chat_completion_unified.Request': 'inference/chat_completion_unified/UnifiedRequest.ts#L24-L63', 'inference.chat_completion_unified.Response': 'inference/chat_completion_unified/UnifiedResponse.ts#L22-L25', -'inference.completion.Request': 'inference/completion/CompletionRequest.ts#L25-L64', +'inference.completion.Request': 'inference/completion/CompletionRequest.ts#L25-L66', 'inference.completion.Response': 'inference/completion/CompletionResponse.ts#L22-L25', -'inference.delete.Request': 'inference/delete/DeleteRequest.ts#L24-L68', +'inference.delete.Request': 'inference/delete/DeleteRequest.ts#L24-L69', 'inference.delete.Response': 'inference/delete/DeleteResponse.ts#L22-L25', -'inference.get.Request': 'inference/get/GetRequest.ts#L24-L58', +'inference.get.Request': 'inference/get/GetRequest.ts#L24-L59', 'inference.get.Response': 'inference/get/GetResponse.ts#L22-L26', -'inference.inference.Request': 'inference/inference/InferenceRequest.ts#L26-L104', +'inference.inference.Request': 'inference/inference/InferenceRequest.ts#L26-L106', 'inference.inference.Response': 'inference/inference/InferenceResponse.ts#L22-L25', -'inference.put.Request': 'inference/put/PutRequest.ts#L26-L90', +'inference.put.Request': 'inference/put/PutRequest.ts#L26-L92', 'inference.put.Response': 'inference/put/PutResponse.ts#L22-L25', -'inference.put_ai21.Request': 'inference/put_ai21/PutAi21Request.ts#L29-L73', +'inference.put_ai21.Request': 'inference/put_ai21/PutAi21Request.ts#L29-L75', 'inference.put_ai21.Response': 'inference/put_ai21/PutAi21Response.ts#L22-L25', -'inference.put_alibabacloud.Request': 'inference/put_alibabacloud/PutAlibabaCloudRequest.ts#L31-L87', +'inference.put_alibabacloud.Request': 'inference/put_alibabacloud/PutAlibabaCloudRequest.ts#L31-L89', 'inference.put_alibabacloud.Response': 'inference/put_alibabacloud/PutAlibabaCloudResponse.ts#L22-L25', -'inference.put_amazonbedrock.Request': 'inference/put_amazonbedrock/PutAmazonBedrockRequest.ts#L31-L90', +'inference.put_amazonbedrock.Request': 'inference/put_amazonbedrock/PutAmazonBedrockRequest.ts#L31-L92', 'inference.put_amazonbedrock.Response': 'inference/put_amazonbedrock/PutAmazonBedrockResponse.ts#L22-L25', -'inference.put_amazonsagemaker.Request': 'inference/put_amazonsagemaker/PutAmazonSageMakerRequest.ts#L31-L88', +'inference.put_amazonsagemaker.Request': 'inference/put_amazonsagemaker/PutAmazonSageMakerRequest.ts#L31-L90', 'inference.put_amazonsagemaker.Response': 'inference/put_amazonsagemaker/PutAmazonSageMakerResponse.ts#L22-L25', -'inference.put_anthropic.Request': 'inference/put_anthropic/PutAnthropicRequest.ts#L30-L80', +'inference.put_anthropic.Request': 'inference/put_anthropic/PutAnthropicRequest.ts#L30-L82', 'inference.put_anthropic.Response': 'inference/put_anthropic/PutAnthropicResponse.ts#L22-L25', -'inference.put_azureaistudio.Request': 'inference/put_azureaistudio/PutAzureAiStudioRequest.ts#L31-L87', +'inference.put_azureaistudio.Request': 'inference/put_azureaistudio/PutAzureAiStudioRequest.ts#L31-L89', 'inference.put_azureaistudio.Response': 'inference/put_azureaistudio/PutAzureAiStudioResponse.ts#L22-L25', -'inference.put_azureopenai.Request': 'inference/put_azureopenai/PutAzureOpenAiRequest.ts#L31-L95', +'inference.put_azureopenai.Request': 'inference/put_azureopenai/PutAzureOpenAiRequest.ts#L31-L97', 'inference.put_azureopenai.Response': 'inference/put_azureopenai/PutAzureOpenAiResponse.ts#L22-L25', -'inference.put_cohere.Request': 'inference/put_cohere/PutCohereRequest.ts#L31-L88', +'inference.put_cohere.Request': 'inference/put_cohere/PutCohereRequest.ts#L31-L90', 'inference.put_cohere.Response': 'inference/put_cohere/PutCohereResponse.ts#L22-L25', -'inference.put_contextualai.Request': 'inference/put_contextualai/PutContextualAiRequest.ts#L30-L81', +'inference.put_contextualai.Request': 'inference/put_contextualai/PutContextualAiRequest.ts#L30-L83', 'inference.put_contextualai.Response': 'inference/put_contextualai/PutContextualAiResponse.ts#L22-L25', -'inference.put_custom.Request': 'inference/put_custom/PutCustomRequest.ts#L30-L119', +'inference.put_custom.Request': 'inference/put_custom/PutCustomRequest.ts#L30-L121', 'inference.put_custom.Response': 'inference/put_custom/PutCustomResponse.ts#L22-L25', -'inference.put_deepseek.Request': 'inference/put_deepseek/PutDeepSeekRequest.ts#L29-L74', +'inference.put_deepseek.Request': 'inference/put_deepseek/PutDeepSeekRequest.ts#L29-L76', 'inference.put_deepseek.Response': 'inference/put_deepseek/PutDeepSeekResponse.ts#L22-L25', -'inference.put_elasticsearch.Request': 'inference/put_elasticsearch/PutElasticsearchRequest.ts#L31-L101', +'inference.put_elasticsearch.Request': 'inference/put_elasticsearch/PutElasticsearchRequest.ts#L31-L103', 'inference.put_elasticsearch.Response': 'inference/put_elasticsearch/PutElasticsearchResponse.ts#L22-L25', -'inference.put_elser.Request': 'inference/put_elser/PutElserRequest.ts#L30-L95', +'inference.put_elser.Request': 'inference/put_elser/PutElserRequest.ts#L30-L97', 'inference.put_elser.Response': 'inference/put_elser/PutElserResponse.ts#L22-L25', -'inference.put_googleaistudio.Request': 'inference/put_googleaistudio/PutGoogleAiStudioRequest.ts#L30-L81', +'inference.put_googleaistudio.Request': 'inference/put_googleaistudio/PutGoogleAiStudioRequest.ts#L30-L83', 'inference.put_googleaistudio.Response': 'inference/put_googleaistudio/PutGoogleAiStudioResponse.ts#L22-L25', -'inference.put_googlevertexai.Request': 'inference/put_googlevertexai/PutGoogleVertexAiRequest.ts#L31-L87', +'inference.put_googlevertexai.Request': 'inference/put_googlevertexai/PutGoogleVertexAiRequest.ts#L31-L89', 'inference.put_googlevertexai.Response': 'inference/put_googlevertexai/PutGoogleVertexAiResponse.ts#L22-L25', -'inference.put_hugging_face.Request': 'inference/put_hugging_face/PutHuggingFaceRequest.ts#L31-L123', +'inference.put_hugging_face.Request': 'inference/put_hugging_face/PutHuggingFaceRequest.ts#L31-L125', 'inference.put_hugging_face.Response': 'inference/put_hugging_face/PutHuggingFaceResponse.ts#L22-L25', -'inference.put_jinaai.Request': 'inference/put_jinaai/PutJinaAiRequest.ts#L31-L90', +'inference.put_jinaai.Request': 'inference/put_jinaai/PutJinaAiRequest.ts#L31-L92', 'inference.put_jinaai.Response': 'inference/put_jinaai/PutJinaAiResponse.ts#L22-L25', -'inference.put_llama.Request': 'inference/put_llama/PutLlamaRequest.ts#L30-L81', +'inference.put_llama.Request': 'inference/put_llama/PutLlamaRequest.ts#L30-L83', 'inference.put_llama.Response': 'inference/put_llama/PutLlamaResponse.ts#L22-L25', -'inference.put_mistral.Request': 'inference/put_mistral/PutMistralRequest.ts#L30-L81', +'inference.put_mistral.Request': 'inference/put_mistral/PutMistralRequest.ts#L30-L83', 'inference.put_mistral.Response': 'inference/put_mistral/PutMistralResponse.ts#L22-L25', -'inference.put_openai.Request': 'inference/put_openai/PutOpenAiRequest.ts#L31-L88', +'inference.put_openai.Request': 'inference/put_openai/PutOpenAiRequest.ts#L31-L90', 'inference.put_openai.Response': 'inference/put_openai/PutOpenAiResponse.ts#L22-L25', -'inference.put_voyageai.Request': 'inference/put_voyageai/PutVoyageAIRequest.ts#L31-L89', +'inference.put_voyageai.Request': 'inference/put_voyageai/PutVoyageAIRequest.ts#L31-L91', 'inference.put_voyageai.Response': 'inference/put_voyageai/PutVoyageAIResponse.ts#L22-L25', -'inference.put_watsonx.Request': 'inference/put_watsonx/PutWatsonxRequest.ts#L30-L83', +'inference.put_watsonx.Request': 'inference/put_watsonx/PutWatsonxRequest.ts#L30-L85', 'inference.put_watsonx.Response': 'inference/put_watsonx/PutWatsonxResponse.ts#L22-L25', -'inference.rerank.Request': 'inference/rerank/RerankRequest.ts#L25-L73', +'inference.rerank.Request': 'inference/rerank/RerankRequest.ts#L25-L76', 'inference.rerank.Response': 'inference/rerank/RerankResponse.ts#L22-L25', -'inference.sparse_embedding.Request': 'inference/sparse_embedding/SparseEmbeddingRequest.ts#L25-L64', +'inference.sparse_embedding.Request': 'inference/sparse_embedding/SparseEmbeddingRequest.ts#L25-L66', 'inference.sparse_embedding.Response': 'inference/sparse_embedding/SparseEmbeddingResponse.ts#L22-L25', -'inference.stream_completion.Request': 'inference/stream_completion/StreamInferenceRequest.ts#L25-L72', +'inference.stream_completion.Request': 'inference/stream_completion/StreamInferenceRequest.ts#L25-L74', 'inference.stream_completion.Response': 'inference/stream_completion/StreamInferenceResponse.ts#L22-L25', -'inference.text_embedding.Request': 'inference/text_embedding/TextEmbeddingRequest.ts#L25-L77', +'inference.text_embedding.Request': 'inference/text_embedding/TextEmbeddingRequest.ts#L25-L79', 'inference.text_embedding.Response': 'inference/text_embedding/TextEmbeddingResponse.ts#L22-L25', -'inference.update.Request': 'inference/update/UpdateInferenceRequest.ts#L25-L61', +'inference.update.Request': 'inference/update/UpdateInferenceRequest.ts#L25-L63', 'inference.update.Response': 'inference/update/UpdateInferenceResponse.ts#L22-L25', 'ingest._types.AppendProcessor': 'ingest/_types/Processors.ts#L329-L348', 'ingest._types.AttachmentProcessor': 'ingest/_types/Processors.ts#L350-L391', @@ -2155,74 +2154,74 @@ 'ingest._types.UserAgentProcessor': 'ingest/_types/Processors.ts#L519-L550', 'ingest._types.UserAgentProperty': 'ingest/_types/Processors.ts#L552-L558', 'ingest._types.Web': 'ingest/_types/Database.ts#L61-L61', -'ingest.delete_geoip_database.Request': 'ingest/delete_geoip_database/DeleteGeoipDatabaseRequest.ts#L24-L57', +'ingest.delete_geoip_database.Request': 'ingest/delete_geoip_database/DeleteGeoipDatabaseRequest.ts#L24-L58', 'ingest.delete_geoip_database.Response': 'ingest/delete_geoip_database/DeleteGeoipDatabaseResponse.ts#L22-L25', -'ingest.delete_ip_location_database.Request': 'ingest/delete_ip_location_database/DeleteIpLocationDatabaseRequest.ts#L24-L61', +'ingest.delete_ip_location_database.Request': 'ingest/delete_ip_location_database/DeleteIpLocationDatabaseRequest.ts#L24-L62', 'ingest.delete_ip_location_database.Response': 'ingest/delete_ip_location_database/DeleteIpLocationDatabaseResponse.ts#L22-L25', -'ingest.delete_pipeline.Request': 'ingest/delete_pipeline/DeletePipelineRequest.ts#L24-L62', +'ingest.delete_pipeline.Request': 'ingest/delete_pipeline/DeletePipelineRequest.ts#L24-L63', 'ingest.delete_pipeline.Response': 'ingest/delete_pipeline/DeletePipelineResponse.ts#L22-L25', 'ingest.geo_ip_stats.GeoIpDownloadStatistics': 'ingest/geo_ip_stats/types.ts#L24-L37', 'ingest.geo_ip_stats.GeoIpNodeDatabaseName': 'ingest/geo_ip_stats/types.ts#L47-L50', 'ingest.geo_ip_stats.GeoIpNodeDatabases': 'ingest/geo_ip_stats/types.ts#L39-L45', -'ingest.geo_ip_stats.Request': 'ingest/geo_ip_stats/IngestGeoIpStatsRequest.ts#L22-L39', +'ingest.geo_ip_stats.Request': 'ingest/geo_ip_stats/IngestGeoIpStatsRequest.ts#L23-L41', 'ingest.geo_ip_stats.Response': 'ingest/geo_ip_stats/IngestGeoIpStatsResponse.ts#L24-L31', 'ingest.get_geoip_database.DatabaseConfigurationMetadata': 'ingest/get_geoip_database/GetGeoipDatabaseResponse.ts#L29-L34', -'ingest.get_geoip_database.Request': 'ingest/get_geoip_database/GetGeoipDatabaseRequest.ts#L23-L51', +'ingest.get_geoip_database.Request': 'ingest/get_geoip_database/GetGeoipDatabaseRequest.ts#L23-L52', 'ingest.get_geoip_database.Response': 'ingest/get_geoip_database/GetGeoipDatabaseResponse.ts#L25-L27', 'ingest.get_ip_location_database.DatabaseConfigurationMetadata': 'ingest/get_ip_location_database/GetIpLocationDatabaseResponse.ts#L28-L34', -'ingest.get_ip_location_database.Request': 'ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts#L23-L51', +'ingest.get_ip_location_database.Request': 'ingest/get_ip_location_database/GetIpLocationDatabaseRequest.ts#L23-L52', 'ingest.get_ip_location_database.Response': 'ingest/get_ip_location_database/GetIpLocationDatabaseResponse.ts#L24-L26', -'ingest.get_pipeline.Request': 'ingest/get_pipeline/GetPipelineRequest.ts#L24-L64', +'ingest.get_pipeline.Request': 'ingest/get_pipeline/GetPipelineRequest.ts#L24-L66', 'ingest.get_pipeline.Response': 'ingest/get_pipeline/GetPipelineResponse.ts#L23-L26', -'ingest.processor_grok.Request': 'ingest/processor_grok/GrokProcessorPatternsRequest.ts#L22-L41', +'ingest.processor_grok.Request': 'ingest/processor_grok/GrokProcessorPatternsRequest.ts#L23-L43', 'ingest.processor_grok.Response': 'ingest/processor_grok/GrokProcessorPatternsResponse.ts#L22-L24', -'ingest.put_geoip_database.Request': 'ingest/put_geoip_database/PutGeoipDatabaseRequest.ts#L25-L66', +'ingest.put_geoip_database.Request': 'ingest/put_geoip_database/PutGeoipDatabaseRequest.ts#L25-L69', 'ingest.put_geoip_database.Response': 'ingest/put_geoip_database/PutGeoipDatabaseResponse.ts#L22-L25', -'ingest.put_ip_location_database.Request': 'ingest/put_ip_location_database/PutIpLocationDatabaseRequest.ts#L25-L63', +'ingest.put_ip_location_database.Request': 'ingest/put_ip_location_database/PutIpLocationDatabaseRequest.ts#L25-L65', 'ingest.put_ip_location_database.Response': 'ingest/put_ip_location_database/PutIpLocationDatabaseResponse.ts#L22-L25', -'ingest.put_pipeline.Request': 'ingest/put_pipeline/PutPipelineRequest.ts#L26-L99', +'ingest.put_pipeline.Request': 'ingest/put_pipeline/PutPipelineRequest.ts#L26-L101', 'ingest.put_pipeline.Response': 'ingest/put_pipeline/PutPipelineResponse.ts#L22-L25', -'ingest.simulate.Request': 'ingest/simulate/SimulatePipelineRequest.ts#L25-L73', +'ingest.simulate.Request': 'ingest/simulate/SimulatePipelineRequest.ts#L25-L75', 'ingest.simulate.Response': 'ingest/simulate/SimulatePipelineResponse.ts#L22-L24', 'license._types.License': 'license/_types/License.ts#L42-L53', 'license._types.LicenseStatus': 'license/_types/License.ts#L35-L40', 'license._types.LicenseType': 'license/_types/License.ts#L23-L33', -'license.delete.Request': 'license/delete/DeleteLicenseRequest.ts#L23-L54', +'license.delete.Request': 'license/delete/DeleteLicenseRequest.ts#L24-L56', 'license.delete.Response': 'license/delete/DeleteLicenseResponse.ts#L22-L25', 'license.get.LicenseInformation': 'license/get/types.ts#L25-L38', -'license.get.Request': 'license/get/GetLicenseRequest.ts#L22-L58', +'license.get.Request': 'license/get/GetLicenseRequest.ts#L23-L60', 'license.get.Response': 'license/get/GetLicenseResponse.ts#L22-L24', -'license.get_basic_status.Request': 'license/get_basic_status/GetBasicLicenseStatusRequest.ts#L22-L37', +'license.get_basic_status.Request': 'license/get_basic_status/GetBasicLicenseStatusRequest.ts#L23-L39', 'license.get_basic_status.Response': 'license/get_basic_status/GetBasicLicenseStatusResponse.ts#L20-L22', -'license.get_trial_status.Request': 'license/get_trial_status/GetTrialLicenseStatusRequest.ts#L22-L37', +'license.get_trial_status.Request': 'license/get_trial_status/GetTrialLicenseStatusRequest.ts#L23-L39', 'license.get_trial_status.Response': 'license/get_trial_status/GetTrialLicenseStatusResponse.ts#L20-L22', 'license.post.Acknowledgement': 'license/post/types.ts#L20-L23', -'license.post.Request': 'license/post/PostLicenseRequest.ts#L24-L70', +'license.post.Request': 'license/post/PostLicenseRequest.ts#L25-L73', 'license.post.Response': 'license/post/PostLicenseResponse.ts#L23-L29', -'license.post_start_basic.Request': 'license/post_start_basic/StartBasicLicenseRequest.ts#L23-L59', +'license.post_start_basic.Request': 'license/post_start_basic/StartBasicLicenseRequest.ts#L24-L65', 'license.post_start_basic.Response': 'license/post_start_basic/StartBasicLicenseResponse.ts#L23-L31', -'license.post_start_trial.Request': 'license/post_start_trial/StartTrialLicenseRequest.ts#L23-L53', +'license.post_start_trial.Request': 'license/post_start_trial/StartTrialLicenseRequest.ts#L24-L63', 'license.post_start_trial.Response': 'license/post_start_trial/StartTrialLicenseResponse.ts#L22-L29', -'logstash._types.Pipeline': 'logstash/_types/Pipeline.ts#L56-L87', +'logstash._types.Pipeline': 'logstash/_types/Pipeline.ts#L57-L88', 'logstash._types.PipelineMetadata': 'logstash/_types/Pipeline.ts#L23-L26', 'logstash._types.PipelineSettings': 'logstash/_types/Pipeline.ts#L28-L55', -'logstash.delete_pipeline.Request': 'logstash/delete_pipeline/LogstashDeletePipelineRequest.ts#L23-L48', -'logstash.get_pipeline.Request': 'logstash/get_pipeline/LogstashGetPipelineRequest.ts#L23-L51', +'logstash.delete_pipeline.Request': 'logstash/delete_pipeline/LogstashDeletePipelineRequest.ts#L23-L49', +'logstash.get_pipeline.Request': 'logstash/get_pipeline/LogstashGetPipelineRequest.ts#L23-L52', 'logstash.get_pipeline.Response': 'logstash/get_pipeline/LogstashGetPipelineResponse.ts#L24-L27', -'logstash.put_pipeline.Request': 'logstash/put_pipeline/LogstashPutPipelineRequest.ts#L24-L52', +'logstash.put_pipeline.Request': 'logstash/put_pipeline/LogstashPutPipelineRequest.ts#L24-L54', 'migration.deprecations.Deprecation': 'migration/deprecations/types.ts#L32-L47', 'migration.deprecations.DeprecationLevel': 'migration/deprecations/types.ts#L23-L30', -'migration.deprecations.Request': 'migration/deprecations/DeprecationInfoRequest.ts#L23-L50', +'migration.deprecations.Request': 'migration/deprecations/DeprecationInfoRequest.ts#L23-L51', 'migration.deprecations.Response': 'migration/deprecations/DeprecationInfoResponse.ts#L23-L54', 'migration.get_feature_upgrade_status.MigrationFeature': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L37-L42', 'migration.get_feature_upgrade_status.MigrationFeatureIndexInfo': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L44-L48', 'migration.get_feature_upgrade_status.MigrationStatus': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L30-L35', -'migration.get_feature_upgrade_status.Request': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusRequest.ts#L22-L43', +'migration.get_feature_upgrade_status.Request': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusRequest.ts#L23-L45', 'migration.get_feature_upgrade_status.Response': 'migration/get_feature_upgrade_status/GetFeatureUpgradeStatusResponse.ts#L23-L28', 'migration.post_feature_upgrade.MigrationFeature': 'migration/post_feature_upgrade/PostFeatureUpgradeResponse.ts#L28-L30', -'migration.post_feature_upgrade.Request': 'migration/post_feature_upgrade/PostFeatureUpgradeRequest.ts#L22-L44', +'migration.post_feature_upgrade.Request': 'migration/post_feature_upgrade/PostFeatureUpgradeRequest.ts#L23-L46', 'migration.post_feature_upgrade.Response': 'migration/post_feature_upgrade/PostFeatureUpgradeResponse.ts#L20-L26', -'ml._types.AdaptiveAllocationsSettings': 'ml/_types/TrainedModel.ts#L109-L125', +'ml._types.AdaptiveAllocationsSettings': 'ml/_types/TrainedModel.ts#L110-L126', 'ml._types.AnalysisConfig': 'ml/_types/Analysis.ts#L29-L77', 'ml._types.AnalysisConfigRead': 'ml/_types/Analysis.ts#L79-L148', 'ml._types.AnalysisLimits': 'ml/_types/Analysis.ts#L161-L172', @@ -2232,27 +2231,27 @@ 'ml._types.AnomalyExplanation': 'ml/_types/Anomaly.ts#L157-L198', 'ml._types.ApiKeyAuthorization': 'ml/_types/Authorization.ts#L20-L29', 'ml._types.AppliesTo': 'ml/_types/Rule.ts#L67-L72', -'ml._types.BucketInfluencer': 'ml/_types/Bucket.ts#L79-L127', +'ml._types.BucketInfluencer': 'ml/_types/Bucket.ts#L79-L128', 'ml._types.BucketSummary': 'ml/_types/Bucket.ts#L30-L77', -'ml._types.CalendarEvent': 'ml/_types/CalendarEvent.ts#L24-L44', +'ml._types.CalendarEvent': 'ml/_types/CalendarEvent.ts#L24-L46', 'ml._types.CategorizationAnalyzer': 'ml/_types/Analysis.ts#L181-L182', 'ml._types.CategorizationAnalyzerDefinition': 'ml/_types/Analysis.ts#L184-L198', 'ml._types.CategorizationStatus': 'ml/_types/Model.ts#L84-L87', 'ml._types.Category': 'ml/_types/Category.ts#L23-L49', -'ml._types.ChunkingConfig': 'ml/_types/Datafeed.ts#L254-L267', -'ml._types.ChunkingMode': 'ml/_types/Datafeed.ts#L248-L252', +'ml._types.ChunkingConfig': 'ml/_types/Datafeed.ts#L255-L268', +'ml._types.ChunkingMode': 'ml/_types/Datafeed.ts#L249-L253', 'ml._types.ClassificationInferenceOptions': 'ml/_types/inference.ts#L118-L133', 'ml._types.CommonTokenizationConfig': 'ml/_types/inference.ts#L160-L186', 'ml._types.ConditionOperator': 'ml/_types/Rule.ts#L74-L79', 'ml._types.DataCounts': 'ml/_types/Job.ts#L354-L374', 'ml._types.DataDescription': 'ml/_types/Job.ts#L376-L392', 'ml._types.Datafeed': 'ml/_types/Datafeed.ts#L37-L64', -'ml._types.DatafeedAuthorization': 'ml/_types/Authorization.ts#L31-L43', -'ml._types.DatafeedConfig': 'ml/_types/Datafeed.ts#L66-L123', -'ml._types.DatafeedRunningState': 'ml/_types/Datafeed.ts#L213-L227', -'ml._types.DatafeedState': 'ml/_types/Datafeed.ts#L139-L144', -'ml._types.DatafeedStats': 'ml/_types/Datafeed.ts#L146-L175', -'ml._types.DatafeedTimingStats': 'ml/_types/Datafeed.ts#L177-L205', +'ml._types.DatafeedAuthorization': 'ml/_types/Authorization.ts#L31-L44', +'ml._types.DatafeedConfig': 'ml/_types/Datafeed.ts#L66-L124', +'ml._types.DatafeedRunningState': 'ml/_types/Datafeed.ts#L214-L228', +'ml._types.DatafeedState': 'ml/_types/Datafeed.ts#L140-L145', +'ml._types.DatafeedStats': 'ml/_types/Datafeed.ts#L147-L176', +'ml._types.DatafeedTimingStats': 'ml/_types/Datafeed.ts#L178-L206', 'ml._types.DataframeAnalysis': 'ml/_types/DataframeAnalytics.ts#L134-L213', 'ml._types.DataframeAnalysisAnalyzedFields': 'ml/_types/DataframeAnalytics.ts#L238-L244', 'ml._types.DataframeAnalysisClassification': 'ml/_types/DataframeAnalytics.ts#L227-L236', @@ -2266,7 +2265,7 @@ 'ml._types.DataframeAnalysisOutlierDetection': 'ml/_types/DataframeAnalytics.ts#L103-L132', 'ml._types.DataframeAnalysisRegression': 'ml/_types/DataframeAnalytics.ts#L215-L225', 'ml._types.DataframeAnalytics': 'ml/_types/DataframeAnalytics.ts#L325-L345', -'ml._types.DataframeAnalyticsAuthorization': 'ml/_types/Authorization.ts#L45-L57', +'ml._types.DataframeAnalyticsAuthorization': 'ml/_types/Authorization.ts#L46-L59', 'ml._types.DataframeAnalyticsDestination': 'ml/_types/DataframeAnalytics.ts#L77-L82', 'ml._types.DataframeAnalyticsFieldSelection': 'ml/_types/DataframeAnalytics.ts#L55-L68', 'ml._types.DataframeAnalyticsMemoryEstimation': 'ml/_types/DataframeAnalytics.ts#L70-L75', @@ -2290,9 +2289,9 @@ 'ml._types.DataframeEvaluationRegressionMetricsHuber': 'ml/_types/DataframeEvaluation.ts#L117-L120', 'ml._types.DataframeEvaluationRegressionMetricsMsle': 'ml/_types/DataframeEvaluation.ts#L112-L115', 'ml._types.DataframeState': 'ml/_types/Dataframe.ts#L20-L26', -'ml._types.DelayedDataCheckConfig': 'ml/_types/Datafeed.ts#L125-L136', -'ml._types.DeploymentAllocationState': 'ml/_types/TrainedModel.ts#L331-L344', -'ml._types.DeploymentAssignmentState': 'ml/_types/TrainedModel.ts#L346-L363', +'ml._types.DelayedDataCheckConfig': 'ml/_types/Datafeed.ts#L126-L137', +'ml._types.DeploymentAllocationState': 'ml/_types/TrainedModel.ts#L332-L345', +'ml._types.DeploymentAssignmentState': 'ml/_types/TrainedModel.ts#L347-L364', 'ml._types.DetectionRule': 'ml/_types/Rule.ts#L25-L39', 'ml._types.Detector': 'ml/_types/Detector.ts#L25-L67', 'ml._types.DetectorRead': 'ml/_types/Detector.ts#L69-L125', @@ -2300,19 +2299,19 @@ 'ml._types.DiscoveryNodeCompact': 'ml/_types/DiscoveryNode.ts#L39-L48', 'ml._types.DiscoveryNodeContent': 'ml/_types/DiscoveryNode.ts#L27-L37', 'ml._types.ExcludeFrequent': 'ml/_types/Detector.ts#L145-L150', -'ml._types.ExponentialAverageCalculationContext': 'ml/_types/Datafeed.ts#L207-L211', -'ml._types.FillMaskInferenceOptions': 'ml/_types/inference.ts#L284-L299', -'ml._types.FillMaskInferenceUpdateOptions': 'ml/_types/inference.ts#L430-L437', +'ml._types.ExponentialAverageCalculationContext': 'ml/_types/Datafeed.ts#L208-L212', +'ml._types.FillMaskInferenceOptions': 'ml/_types/inference.ts#L286-L303', +'ml._types.FillMaskInferenceUpdateOptions': 'ml/_types/inference.ts#L434-L441', 'ml._types.Filter': 'ml/_types/Filter.ts#L22-L29', 'ml._types.FilterRef': 'ml/_types/Filter.ts#L31-L41', 'ml._types.FilterType': 'ml/_types/Filter.ts#L43-L46', 'ml._types.GeoResults': 'ml/_types/Anomaly.ts#L146-L155', -'ml._types.Hyperparameter': 'ml/_types/TrainedModel.ts#L274-L288', +'ml._types.Hyperparameter': 'ml/_types/TrainedModel.ts#L275-L289', 'ml._types.Hyperparameters': 'ml/_types/DataframeAnalytics.ts#L420-L526', 'ml._types.Include': 'ml/_types/Include.ts#L20-L47', 'ml._types.InferenceConfigCreateContainer': 'ml/_types/inference.ts#L26-L85', -'ml._types.InferenceConfigUpdateContainer': 'ml/_types/inference.ts#L315-L337', -'ml._types.InferenceResponseResult': 'ml/_types/inference.ts#L478-L526', +'ml._types.InferenceConfigUpdateContainer': 'ml/_types/inference.ts#L319-L341', +'ml._types.InferenceResponseResult': 'ml/_types/inference.ts#L482-L530', 'ml._types.Influence': 'ml/_types/Anomaly.ts#L141-L144', 'ml._types.Influencer': 'ml/_types/Influencer.ts#L24-L76', 'ml._types.Job': 'ml/_types/Job.ts#L61-L180', @@ -2326,101 +2325,101 @@ 'ml._types.JobTimingStats': 'ml/_types/Job.ts#L334-L343', 'ml._types.LearningToRankConfig': 'ml/_types/inference.ts#L87-L91', 'ml._types.MemoryStatus': 'ml/_types/Model.ts#L89-L93', -'ml._types.ModelPackageConfig': 'ml/_types/TrainedModel.ts#L257-L272', +'ml._types.ModelPackageConfig': 'ml/_types/TrainedModel.ts#L258-L273', 'ml._types.ModelPlotConfig': 'ml/_types/ModelPlot.ts#L23-L42', 'ml._types.ModelSizeStats': 'ml/_types/Model.ts#L59-L82', 'ml._types.ModelSnapshot': 'ml/_types/Model.ts#L25-L46', 'ml._types.ModelSnapshotUpgrade': 'ml/_types/Model.ts#L48-L57', -'ml._types.NerInferenceOptions': 'ml/_types/inference.ts#L273-L282', -'ml._types.NerInferenceUpdateOptions': 'ml/_types/inference.ts#L423-L428', +'ml._types.NerInferenceOptions': 'ml/_types/inference.ts#L275-L284', +'ml._types.NerInferenceUpdateOptions': 'ml/_types/inference.ts#L427-L432', 'ml._types.NlpBertTokenizationConfig': 'ml/_types/inference.ts#L188-L189', 'ml._types.NlpRobertaTokenizationConfig': 'ml/_types/inference.ts#L191-L198', -'ml._types.NlpTokenizationUpdateOptions': 'ml/_types/inference.ts#L375-L380', +'ml._types.NlpTokenizationUpdateOptions': 'ml/_types/inference.ts#L379-L384', 'ml._types.OutlierDetectionParameters': 'ml/_types/DataframeAnalytics.ts#L528-L562', -'ml._types.OverallBucket': 'ml/_types/Bucket.ts#L129-L144', -'ml._types.OverallBucketJob': 'ml/_types/Bucket.ts#L145-L148', +'ml._types.OverallBucket': 'ml/_types/Bucket.ts#L130-L145', +'ml._types.OverallBucketJob': 'ml/_types/Bucket.ts#L146-L149', 'ml._types.Page': 'ml/_types/Page.ts#L22-L33', -'ml._types.PassThroughInferenceOptions': 'ml/_types/inference.ts#L239-L246', -'ml._types.PassThroughInferenceUpdateOptions': 'ml/_types/inference.ts#L404-L409', +'ml._types.PassThroughInferenceOptions': 'ml/_types/inference.ts#L241-L248', +'ml._types.PassThroughInferenceUpdateOptions': 'ml/_types/inference.ts#L408-L413', 'ml._types.PerPartitionCategorization': 'ml/_types/Analysis.ts#L150-L159', 'ml._types.QueryFeatureExtractor': 'ml/_types/inference.ts#L98-L105', -'ml._types.QuestionAnsweringInferenceOptions': 'ml/_types/inference.ts#L301-L311', -'ml._types.QuestionAnsweringInferenceUpdateOptions': 'ml/_types/inference.ts#L439-L450', +'ml._types.QuestionAnsweringInferenceOptions': 'ml/_types/inference.ts#L305-L315', +'ml._types.QuestionAnsweringInferenceUpdateOptions': 'ml/_types/inference.ts#L443-L454', 'ml._types.RegressionInferenceOptions': 'ml/_types/inference.ts#L107-L116', -'ml._types.RoutingState': 'ml/_types/TrainedModel.ts#L408-L429', +'ml._types.RoutingState': 'ml/_types/TrainedModel.ts#L409-L430', 'ml._types.RuleAction': 'ml/_types/Rule.ts#L41-L50', 'ml._types.RuleCondition': 'ml/_types/Rule.ts#L52-L65', -'ml._types.RunningStateSearchInterval': 'ml/_types/Datafeed.ts#L229-L246', +'ml._types.RunningStateSearchInterval': 'ml/_types/Datafeed.ts#L230-L247', 'ml._types.SnapshotUpgradeState': 'ml/_types/Model.ts#L95-L100', 'ml._types.TextClassificationInferenceOptions': 'ml/_types/inference.ts#L202-L214', -'ml._types.TextClassificationInferenceUpdateOptions': 'ml/_types/inference.ts#L382-L391', -'ml._types.TextEmbeddingInferenceOptions': 'ml/_types/inference.ts#L252-L262', -'ml._types.TextEmbeddingInferenceUpdateOptions': 'ml/_types/inference.ts#L411-L415', -'ml._types.TextExpansionInferenceOptions': 'ml/_types/inference.ts#L264-L271', -'ml._types.TextExpansionInferenceUpdateOptions': 'ml/_types/inference.ts#L417-L421', +'ml._types.TextClassificationInferenceUpdateOptions': 'ml/_types/inference.ts#L386-L395', +'ml._types.TextEmbeddingInferenceOptions': 'ml/_types/inference.ts#L254-L264', +'ml._types.TextEmbeddingInferenceUpdateOptions': 'ml/_types/inference.ts#L415-L419', +'ml._types.TextExpansionInferenceOptions': 'ml/_types/inference.ts#L266-L273', +'ml._types.TextExpansionInferenceUpdateOptions': 'ml/_types/inference.ts#L421-L425', 'ml._types.TimingStats': 'ml/_types/DataframeAnalytics.ts#L564-L569', 'ml._types.TokenizationConfigContainer': 'ml/_types/inference.ts#L135-L158', -'ml._types.TokenizationTruncate': 'ml/_types/inference.ts#L369-L373', -'ml._types.TopClassEntry': 'ml/_types/inference.ts#L459-L463', -'ml._types.TotalFeatureImportance': 'ml/_types/TrainedModel.ts#L290-L297', -'ml._types.TotalFeatureImportanceClass': 'ml/_types/TrainedModel.ts#L299-L304', -'ml._types.TotalFeatureImportanceStatistics': 'ml/_types/TrainedModel.ts#L306-L313', -'ml._types.TrainedModelAssignment': 'ml/_types/TrainedModel.ts#L472-L489', -'ml._types.TrainedModelAssignmentRoutingStateAndReason': 'ml/_types/TrainedModel.ts#L431-L441', -'ml._types.TrainedModelAssignmentRoutingTable': 'ml/_types/TrainedModel.ts#L443-L461', -'ml._types.TrainedModelAssignmentTaskParameters': 'ml/_types/TrainedModel.ts#L370-L406', -'ml._types.TrainedModelConfig': 'ml/_types/TrainedModel.ts#L203-L240', -'ml._types.TrainedModelConfigInput': 'ml/_types/TrainedModel.ts#L242-L245', -'ml._types.TrainedModelConfigMetadata': 'ml/_types/TrainedModel.ts#L247-L255', -'ml._types.TrainedModelDeploymentAllocationStatus': 'ml/_types/TrainedModel.ts#L463-L470', -'ml._types.TrainedModelDeploymentNodesStats': 'ml/_types/TrainedModel.ts#L156-L201', -'ml._types.TrainedModelDeploymentStats': 'ml/_types/TrainedModel.ts#L62-L107', -'ml._types.TrainedModelEntities': 'ml/_types/inference.ts#L452-L458', -'ml._types.TrainedModelInferenceClassImportance': 'ml/_types/inference.ts#L465-L468', -'ml._types.TrainedModelInferenceFeatureImportance': 'ml/_types/inference.ts#L470-L474', -'ml._types.TrainedModelInferenceStats': 'ml/_types/TrainedModel.ts#L127-L147', -'ml._types.TrainedModelLocation': 'ml/_types/TrainedModel.ts#L491-L493', -'ml._types.TrainedModelLocationIndex': 'ml/_types/TrainedModel.ts#L495-L497', -'ml._types.TrainedModelPrefixStrings': 'ml/_types/TrainedModel.ts#L499-L508', -'ml._types.TrainedModelSizeStats': 'ml/_types/TrainedModel.ts#L149-L154', +'ml._types.TokenizationTruncate': 'ml/_types/inference.ts#L373-L377', +'ml._types.TopClassEntry': 'ml/_types/inference.ts#L463-L467', +'ml._types.TotalFeatureImportance': 'ml/_types/TrainedModel.ts#L291-L298', +'ml._types.TotalFeatureImportanceClass': 'ml/_types/TrainedModel.ts#L300-L305', +'ml._types.TotalFeatureImportanceStatistics': 'ml/_types/TrainedModel.ts#L307-L314', +'ml._types.TrainedModelAssignment': 'ml/_types/TrainedModel.ts#L473-L490', +'ml._types.TrainedModelAssignmentRoutingStateAndReason': 'ml/_types/TrainedModel.ts#L432-L442', +'ml._types.TrainedModelAssignmentRoutingTable': 'ml/_types/TrainedModel.ts#L444-L462', +'ml._types.TrainedModelAssignmentTaskParameters': 'ml/_types/TrainedModel.ts#L371-L407', +'ml._types.TrainedModelConfig': 'ml/_types/TrainedModel.ts#L204-L241', +'ml._types.TrainedModelConfigInput': 'ml/_types/TrainedModel.ts#L243-L246', +'ml._types.TrainedModelConfigMetadata': 'ml/_types/TrainedModel.ts#L248-L256', +'ml._types.TrainedModelDeploymentAllocationStatus': 'ml/_types/TrainedModel.ts#L464-L471', +'ml._types.TrainedModelDeploymentNodesStats': 'ml/_types/TrainedModel.ts#L157-L202', +'ml._types.TrainedModelDeploymentStats': 'ml/_types/TrainedModel.ts#L62-L108', +'ml._types.TrainedModelEntities': 'ml/_types/inference.ts#L456-L462', +'ml._types.TrainedModelInferenceClassImportance': 'ml/_types/inference.ts#L469-L472', +'ml._types.TrainedModelInferenceFeatureImportance': 'ml/_types/inference.ts#L474-L478', +'ml._types.TrainedModelInferenceStats': 'ml/_types/TrainedModel.ts#L128-L148', +'ml._types.TrainedModelLocation': 'ml/_types/TrainedModel.ts#L492-L494', +'ml._types.TrainedModelLocationIndex': 'ml/_types/TrainedModel.ts#L496-L498', +'ml._types.TrainedModelPrefixStrings': 'ml/_types/TrainedModel.ts#L500-L509', +'ml._types.TrainedModelSizeStats': 'ml/_types/TrainedModel.ts#L150-L155', 'ml._types.TrainedModelStats': 'ml/_types/TrainedModel.ts#L42-L60', -'ml._types.TrainedModelType': 'ml/_types/TrainedModel.ts#L315-L329', -'ml._types.TrainingPriority': 'ml/_types/TrainedModel.ts#L365-L368', -'ml._types.TransformAuthorization': 'ml/_types/Authorization.ts#L59-L71', +'ml._types.TrainedModelType': 'ml/_types/TrainedModel.ts#L316-L330', +'ml._types.TrainingPriority': 'ml/_types/TrainedModel.ts#L366-L369', +'ml._types.TransformAuthorization': 'ml/_types/Authorization.ts#L61-L74', 'ml._types.ValidationLoss': 'ml/_types/DataframeAnalytics.ts#L571-L576', -'ml._types.Vocabulary': 'ml/_types/inference.ts#L248-L250', +'ml._types.Vocabulary': 'ml/_types/inference.ts#L250-L252', 'ml._types.XlmRobertaTokenizationConfig': 'ml/_types/inference.ts#L200-L200', -'ml._types.ZeroShotClassificationInferenceOptions': 'ml/_types/inference.ts#L216-L237', -'ml._types.ZeroShotClassificationInferenceUpdateOptions': 'ml/_types/inference.ts#L393-L402', -'ml.clear_trained_model_deployment_cache.Request': 'ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L23-L50', +'ml._types.ZeroShotClassificationInferenceOptions': 'ml/_types/inference.ts#L216-L239', +'ml._types.ZeroShotClassificationInferenceUpdateOptions': 'ml/_types/inference.ts#L397-L406', +'ml.clear_trained_model_deployment_cache.Request': 'ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheRequest.ts#L23-L52', 'ml.clear_trained_model_deployment_cache.Response': 'ml/clear_trained_model_deployment_cache/MlClearTrainedModelDeploymentCacheResponse.ts#L20-L24', -'ml.close_job.Request': 'ml/close_job/MlCloseJobRequest.ts#L24-L85', +'ml.close_job.Request': 'ml/close_job/MlCloseJobRequest.ts#L24-L87', 'ml.close_job.Response': 'ml/close_job/MlCloseJobResponse.ts#L20-L22', -'ml.delete_calendar.Request': 'ml/delete_calendar/MlDeleteCalendarRequest.ts#L23-L45', +'ml.delete_calendar.Request': 'ml/delete_calendar/MlDeleteCalendarRequest.ts#L23-L46', 'ml.delete_calendar.Response': 'ml/delete_calendar/MlDeleteCalendarResponse.ts#L22-L25', -'ml.delete_calendar_event.Request': 'ml/delete_calendar_event/MlDeleteCalendarEventRequest.ts#L23-L50', +'ml.delete_calendar_event.Request': 'ml/delete_calendar_event/MlDeleteCalendarEventRequest.ts#L23-L51', 'ml.delete_calendar_event.Response': 'ml/delete_calendar_event/MlDeleteCalendarEventResponse.ts#L22-L25', -'ml.delete_calendar_job.Request': 'ml/delete_calendar_job/MlDeleteCalendarJobRequest.ts#L23-L51', +'ml.delete_calendar_job.Request': 'ml/delete_calendar_job/MlDeleteCalendarJobRequest.ts#L23-L52', 'ml.delete_calendar_job.Response': 'ml/delete_calendar_job/MlDeleteCalendarJobResponse.ts#L22-L31', -'ml.delete_data_frame_analytics.Request': 'ml/delete_data_frame_analytics/MlDeleteDataFrameAnalyticsRequest.ts#L24-L59', +'ml.delete_data_frame_analytics.Request': 'ml/delete_data_frame_analytics/MlDeleteDataFrameAnalyticsRequest.ts#L24-L60', 'ml.delete_data_frame_analytics.Response': 'ml/delete_data_frame_analytics/MlDeleteDataFrameAnalyticsResponse.ts#L22-L25', -'ml.delete_datafeed.Request': 'ml/delete_datafeed/MlDeleteDatafeedRequest.ts#L23-L56', +'ml.delete_datafeed.Request': 'ml/delete_datafeed/MlDeleteDatafeedRequest.ts#L23-L57', 'ml.delete_datafeed.Response': 'ml/delete_datafeed/MlDeleteDatafeedResponse.ts#L22-L25', -'ml.delete_expired_data.Request': 'ml/delete_expired_data/MlDeleteExpiredDataRequest.ts#L25-L85', +'ml.delete_expired_data.Request': 'ml/delete_expired_data/MlDeleteExpiredDataRequest.ts#L25-L87', 'ml.delete_expired_data.Response': 'ml/delete_expired_data/MlDeleteExpiredDataResponse.ts#L20-L22', -'ml.delete_filter.Request': 'ml/delete_filter/MlDeleteFilterRequest.ts#L23-L48', +'ml.delete_filter.Request': 'ml/delete_filter/MlDeleteFilterRequest.ts#L23-L49', 'ml.delete_filter.Response': 'ml/delete_filter/MlDeleteFilterResponse.ts#L22-L25', -'ml.delete_forecast.Request': 'ml/delete_forecast/MlDeleteForecastRequest.ts#L24-L78', +'ml.delete_forecast.Request': 'ml/delete_forecast/MlDeleteForecastRequest.ts#L24-L79', 'ml.delete_forecast.Response': 'ml/delete_forecast/MlDeleteForecastResponse.ts#L22-L25', -'ml.delete_job.Request': 'ml/delete_job/MlDeleteJobRequest.ts#L23-L73', +'ml.delete_job.Request': 'ml/delete_job/MlDeleteJobRequest.ts#L23-L74', 'ml.delete_job.Response': 'ml/delete_job/MlDeleteJobResponse.ts#L22-L25', -'ml.delete_model_snapshot.Request': 'ml/delete_model_snapshot/MlDeleteModelSnapshotRequest.ts#L23-L53', +'ml.delete_model_snapshot.Request': 'ml/delete_model_snapshot/MlDeleteModelSnapshotRequest.ts#L23-L54', 'ml.delete_model_snapshot.Response': 'ml/delete_model_snapshot/MlDeleteModelSnapshotResponse.ts#L22-L25', -'ml.delete_trained_model.Request': 'ml/delete_trained_model/MlDeleteTrainedModelRequest.ts#L24-L57', +'ml.delete_trained_model.Request': 'ml/delete_trained_model/MlDeleteTrainedModelRequest.ts#L24-L58', 'ml.delete_trained_model.Response': 'ml/delete_trained_model/MlDeleteTrainedModelResponse.ts#L22-L25', -'ml.delete_trained_model_alias.Request': 'ml/delete_trained_model_alias/MlDeleteTrainedModelAliasRequest.ts#L23-L53', +'ml.delete_trained_model_alias.Request': 'ml/delete_trained_model_alias/MlDeleteTrainedModelAliasRequest.ts#L23-L55', 'ml.delete_trained_model_alias.Response': 'ml/delete_trained_model_alias/MlDeleteTrainedModelAliasResponse.ts#L22-L25', -'ml.estimate_model_memory.Request': 'ml/estimate_model_memory/MlEstimateModelMemoryRequest.ts#L26-L71', +'ml.estimate_model_memory.Request': 'ml/estimate_model_memory/MlEstimateModelMemoryRequest.ts#L26-L73', 'ml.estimate_model_memory.Response': 'ml/estimate_model_memory/MlEstimateModelMemoryResponse.ts#L20-L24', 'ml.evaluate_data_frame.ConfusionMatrixItem': 'ml/evaluate_data_frame/types.ts#L125-L130', 'ml.evaluate_data_frame.ConfusionMatrixPrediction': 'ml/evaluate_data_frame/types.ts#L132-L135', @@ -2436,88 +2435,89 @@ 'ml.evaluate_data_frame.DataframeEvaluationValue': 'ml/evaluate_data_frame/types.ts#L87-L89', 'ml.evaluate_data_frame.DataframeOutlierDetectionSummary': 'ml/evaluate_data_frame/types.ts#L24-L42', 'ml.evaluate_data_frame.DataframeRegressionSummary': 'ml/evaluate_data_frame/types.ts#L68-L85', -'ml.evaluate_data_frame.Request': 'ml/evaluate_data_frame/MlEvaluateDataFrameRequest.ts#L25-L61', -'ml.evaluate_data_frame.Response': 'ml/evaluate_data_frame/MlEvaluateDataFrameResponse.ts#L26-L44', -'ml.explain_data_frame_analytics.Request': 'ml/explain_data_frame_analytics/MlExplainDataFrameAnalyticsRequest.ts#L30-L120', +'ml.evaluate_data_frame.Request': 'ml/evaluate_data_frame/MlEvaluateDataFrameRequest.ts#L25-L63', +'ml.evaluate_data_frame.Response': 'ml/evaluate_data_frame/MlEvaluateDataFrameResponse.ts#L26-L29', +'ml.evaluate_data_frame.ResponseBody': 'ml/evaluate_data_frame/MlEvaluateDataFrameResponse.ts#L31-L47', +'ml.explain_data_frame_analytics.Request': 'ml/explain_data_frame_analytics/MlExplainDataFrameAnalyticsRequest.ts#L30-L122', 'ml.explain_data_frame_analytics.Response': 'ml/explain_data_frame_analytics/MlExplainDataFrameAnalyticsResponse.ts#L25-L32', -'ml.flush_job.Request': 'ml/flush_job/MlFlushJobRequest.ts#L24-L109', +'ml.flush_job.Request': 'ml/flush_job/MlFlushJobRequest.ts#L24-L111', 'ml.flush_job.Response': 'ml/flush_job/MlFlushJobResponse.ts#L22-L31', -'ml.forecast.Request': 'ml/forecast/MlForecastJobRequest.ts#L24-L95', +'ml.forecast.Request': 'ml/forecast/MlForecastJobRequest.ts#L24-L97', 'ml.forecast.Response': 'ml/forecast/MlForecastJobResponse.ts#L22-L27', -'ml.get_buckets.Request': 'ml/get_buckets/MlGetBucketsRequest.ts#L26-L146', +'ml.get_buckets.Request': 'ml/get_buckets/MlGetBucketsRequest.ts#L26-L148', 'ml.get_buckets.Response': 'ml/get_buckets/MlGetBucketsResponse.ts#L23-L28', -'ml.get_calendar_events.Request': 'ml/get_calendar_events/MlGetCalendarEventsRequest.ts#L25-L62', +'ml.get_calendar_events.Request': 'ml/get_calendar_events/MlGetCalendarEventsRequest.ts#L25-L65', 'ml.get_calendar_events.Response': 'ml/get_calendar_events/MlGetCalendarEventsResponse.ts#L23-L28', 'ml.get_calendars.Calendar': 'ml/get_calendars/types.ts#L22-L29', -'ml.get_calendars.Request': 'ml/get_calendars/MlGetCalendarsRequest.ts#L25-L64', +'ml.get_calendars.Request': 'ml/get_calendars/MlGetCalendarsRequest.ts#L25-L68', 'ml.get_calendars.Response': 'ml/get_calendars/MlGetCalendarsResponse.ts#L23-L25', -'ml.get_categories.Request': 'ml/get_categories/MlGetCategoriesRequest.ts#L25-L83', +'ml.get_categories.Request': 'ml/get_categories/MlGetCategoriesRequest.ts#L25-L85', 'ml.get_categories.Response': 'ml/get_categories/MlGetCategoriesResponse.ts#L23-L28', -'ml.get_data_frame_analytics.Request': 'ml/get_data_frame_analytics/MlGetDataFrameAnalyticsRequest.ts#L24-L90', +'ml.get_data_frame_analytics.Request': 'ml/get_data_frame_analytics/MlGetDataFrameAnalyticsRequest.ts#L24-L91', 'ml.get_data_frame_analytics.Response': 'ml/get_data_frame_analytics/MlGetDataFrameAnalyticsResponse.ts#L23-L29', -'ml.get_data_frame_analytics_stats.Request': 'ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsRequest.ts#L24-L85', +'ml.get_data_frame_analytics_stats.Request': 'ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsRequest.ts#L24-L86', 'ml.get_data_frame_analytics_stats.Response': 'ml/get_data_frame_analytics_stats/MlGetDataFrameAnalyticsStatsResponse.ts#L23-L29', -'ml.get_datafeed_stats.Request': 'ml/get_datafeed_stats/MlGetDatafeedStatsRequest.ts#L23-L73', +'ml.get_datafeed_stats.Request': 'ml/get_datafeed_stats/MlGetDatafeedStatsRequest.ts#L23-L74', 'ml.get_datafeed_stats.Response': 'ml/get_datafeed_stats/MlGetDatafeedStatsResponse.ts#L23-L28', -'ml.get_datafeeds.Request': 'ml/get_datafeeds/MlGetDatafeedsRequest.ts#L23-L79', +'ml.get_datafeeds.Request': 'ml/get_datafeeds/MlGetDatafeedsRequest.ts#L23-L80', 'ml.get_datafeeds.Response': 'ml/get_datafeeds/MlGetDatafeedsResponse.ts#L23-L28', -'ml.get_filters.Request': 'ml/get_filters/MlGetFiltersRequest.ts#L24-L64', +'ml.get_filters.Request': 'ml/get_filters/MlGetFiltersRequest.ts#L24-L65', 'ml.get_filters.Response': 'ml/get_filters/MlGetFiltersResponse.ts#L23-L28', -'ml.get_influencers.Request': 'ml/get_influencers/MlGetInfluencersRequest.ts#L26-L106', +'ml.get_influencers.Request': 'ml/get_influencers/MlGetInfluencersRequest.ts#L26-L108', 'ml.get_influencers.Response': 'ml/get_influencers/MlGetInfluencersResponse.ts#L23-L29', -'ml.get_job_stats.Request': 'ml/get_job_stats/MlGetJobStatsRequest.ts#L23-L69', +'ml.get_job_stats.Request': 'ml/get_job_stats/MlGetJobStatsRequest.ts#L23-L70', 'ml.get_job_stats.Response': 'ml/get_job_stats/MlGetJobStatsResponse.ts#L23-L28', -'ml.get_jobs.Request': 'ml/get_jobs/MlGetJobsRequest.ts#L23-L79', +'ml.get_jobs.Request': 'ml/get_jobs/MlGetJobsRequest.ts#L23-L80', 'ml.get_jobs.Response': 'ml/get_jobs/MlGetJobsResponse.ts#L23-L28', 'ml.get_memory_stats.JvmStats': 'ml/get_memory_stats/types.ts#L50-L63', 'ml.get_memory_stats.MemMlStats': 'ml/get_memory_stats/types.ts#L90-L111', 'ml.get_memory_stats.MemStats': 'ml/get_memory_stats/types.ts#L65-L88', 'ml.get_memory_stats.Memory': 'ml/get_memory_stats/types.ts#L25-L48', -'ml.get_memory_stats.Request': 'ml/get_memory_stats/MlGetMemoryStatsRequest.ts#L24-L67', +'ml.get_memory_stats.Request': 'ml/get_memory_stats/MlGetMemoryStatsRequest.ts#L24-L68', 'ml.get_memory_stats.Response': 'ml/get_memory_stats/MlGetMemoryStatsResponse.ts#L25-L31', -'ml.get_model_snapshot_upgrade_stats.Request': 'ml/get_model_snapshot_upgrade_stats/MlGetModelSnapshotUpgradeStatsRequest.ts#L23-L66', +'ml.get_model_snapshot_upgrade_stats.Request': 'ml/get_model_snapshot_upgrade_stats/MlGetModelSnapshotUpgradeStatsRequest.ts#L23-L67', 'ml.get_model_snapshot_upgrade_stats.Response': 'ml/get_model_snapshot_upgrade_stats/MlGetModelSnapshotUpgradeStatsResponse.ts#L23-L28', -'ml.get_model_snapshots.Request': 'ml/get_model_snapshots/MlGetModelSnapshotsRequest.ts#L26-L109', +'ml.get_model_snapshots.Request': 'ml/get_model_snapshots/MlGetModelSnapshotsRequest.ts#L26-L111', 'ml.get_model_snapshots.Response': 'ml/get_model_snapshots/MlGetModelSnapshotsResponse.ts#L23-L28', -'ml.get_overall_buckets.Request': 'ml/get_overall_buckets/MlGetOverallBucketsRequest.ts#L25-L153', +'ml.get_overall_buckets.Request': 'ml/get_overall_buckets/MlGetOverallBucketsRequest.ts#L25-L155', 'ml.get_overall_buckets.Response': 'ml/get_overall_buckets/MlGetOverallBucketsResponse.ts#L23-L29', -'ml.get_records.Request': 'ml/get_records/MlGetAnomalyRecordsRequest.ts#L26-L136', +'ml.get_records.Request': 'ml/get_records/MlGetAnomalyRecordsRequest.ts#L26-L138', 'ml.get_records.Response': 'ml/get_records/MlGetAnomalyRecordsResponse.ts#L23-L28', -'ml.get_trained_models.Request': 'ml/get_trained_models/MlGetTrainedModelRequest.ts#L25-L105', +'ml.get_trained_models.Request': 'ml/get_trained_models/MlGetTrainedModelRequest.ts#L25-L106', 'ml.get_trained_models.Response': 'ml/get_trained_models/MlGetTrainedModelResponse.ts#L23-L34', -'ml.get_trained_models_stats.Request': 'ml/get_trained_models_stats/MlGetTrainedModelStatsRequest.ts#L24-L78', +'ml.get_trained_models_stats.Request': 'ml/get_trained_models_stats/MlGetTrainedModelStatsRequest.ts#L24-L79', 'ml.get_trained_models_stats.Response': 'ml/get_trained_models_stats/MlGetTrainedModelStatsResponse.ts#L23-L33', -'ml.infer_trained_model.Request': 'ml/infer_trained_model/MlInferTrainedModelRequest.ts#L27-L68', +'ml.infer_trained_model.Request': 'ml/infer_trained_model/MlInferTrainedModelRequest.ts#L27-L70', 'ml.infer_trained_model.Response': 'ml/infer_trained_model/MlInferTrainedModelResponse.ts#L22-L26', 'ml.info.AnomalyDetectors': 'ml/info/types.ts#L46-L52', 'ml.info.Datafeeds': 'ml/info/types.ts#L42-L44', 'ml.info.Defaults': 'ml/info/types.ts#L24-L27', 'ml.info.Limits': 'ml/info/types.ts#L34-L40', 'ml.info.NativeCode': 'ml/info/types.ts#L29-L32', -'ml.info.Request': 'ml/info/MlInfoRequest.ts#L22-L45', +'ml.info.Request': 'ml/info/MlInfoRequest.ts#L23-L47', 'ml.info.Response': 'ml/info/MlInfoResponse.ts#L22-L29', -'ml.open_job.Request': 'ml/open_job/MlOpenJobRequest.ts#L24-L67', +'ml.open_job.Request': 'ml/open_job/MlOpenJobRequest.ts#L24-L69', 'ml.open_job.Response': 'ml/open_job/MlOpenJobResponse.ts#L22-L31', -'ml.post_calendar_events.Request': 'ml/post_calendar_events/MlPostCalendarEventsRequest.ts#L24-L49', +'ml.post_calendar_events.Request': 'ml/post_calendar_events/MlPostCalendarEventsRequest.ts#L24-L51', 'ml.post_calendar_events.Response': 'ml/post_calendar_events/MlPostCalendarEventsResponse.ts#L22-L24', -'ml.post_data.Request': 'ml/post_data/MlPostJobDataRequest.ts#L24-L77', +'ml.post_data.Request': 'ml/post_data/MlPostJobDataRequest.ts#L24-L79', 'ml.post_data.Response': 'ml/post_data/MlPostJobDataResponse.ts#L24-L45', 'ml.preview_data_frame_analytics.DataframePreviewConfig': 'ml/preview_data_frame_analytics/types.ts#L27-L33', -'ml.preview_data_frame_analytics.Request': 'ml/preview_data_frame_analytics/MlPreviewDataFrameAnalyticsRequest.ts#L24-L61', +'ml.preview_data_frame_analytics.Request': 'ml/preview_data_frame_analytics/MlPreviewDataFrameAnalyticsRequest.ts#L24-L63', 'ml.preview_data_frame_analytics.Response': 'ml/preview_data_frame_analytics/MlPreviewDataFrameAnalyticsResponse.ts#L23-L28', -'ml.preview_datafeed.Request': 'ml/preview_datafeed/MlPreviewDatafeedRequest.ts#L26-L82', +'ml.preview_datafeed.Request': 'ml/preview_datafeed/MlPreviewDatafeedRequest.ts#L26-L86', 'ml.preview_datafeed.Response': 'ml/preview_datafeed/MlPreviewDatafeedResponse.ts#L20-L23', -'ml.put_calendar.Request': 'ml/put_calendar/MlPutCalendarRequest.ts#L23-L52', +'ml.put_calendar.Request': 'ml/put_calendar/MlPutCalendarRequest.ts#L23-L54', 'ml.put_calendar.Response': 'ml/put_calendar/MlPutCalendarResponse.ts#L22-L31', -'ml.put_calendar_job.Request': 'ml/put_calendar_job/MlPutCalendarJobRequest.ts#L23-L46', +'ml.put_calendar_job.Request': 'ml/put_calendar_job/MlPutCalendarJobRequest.ts#L23-L47', 'ml.put_calendar_job.Response': 'ml/put_calendar_job/MlPutCalendarJobResponse.ts#L22-L31', -'ml.put_data_frame_analytics.Request': 'ml/put_data_frame_analytics/MlPutDataFrameAnalyticsRequest.ts#L30-L156', +'ml.put_data_frame_analytics.Request': 'ml/put_data_frame_analytics/MlPutDataFrameAnalyticsRequest.ts#L36-L164', 'ml.put_data_frame_analytics.Response': 'ml/put_data_frame_analytics/MlPutDataFrameAnalyticsResponse.ts#L31-L47', -'ml.put_datafeed.Request': 'ml/put_datafeed/MlPutDatafeedRequest.ts#L37-L185', +'ml.put_datafeed.Request': 'ml/put_datafeed/MlPutDatafeedRequest.ts#L38-L188', 'ml.put_datafeed.Response': 'ml/put_datafeed/MlPutDatafeedResponse.ts#L31-L49', -'ml.put_filter.Request': 'ml/put_filter/MlPutFilterRequest.ts#L23-L59', +'ml.put_filter.Request': 'ml/put_filter/MlPutFilterRequest.ts#L23-L61', 'ml.put_filter.Response': 'ml/put_filter/MlPutFilterResponse.ts#L22-L28', -'ml.put_job.Request': 'ml/put_job/MlPutJobRequest.ts#L30-L151', +'ml.put_job.Request': 'ml/put_job/MlPutJobRequest.ts#L30-L153', 'ml.put_job.Response': 'ml/put_job/MlPutJobResponse.ts#L29-L52', 'ml.put_trained_model.AggregateOutput': 'ml/put_trained_model/types.ts#L101-L106', 'ml.put_trained_model.Definition': 'ml/put_trained_model/types.ts#L24-L29', @@ -2526,56 +2526,56 @@ 'ml.put_trained_model.Input': 'ml/put_trained_model/types.ts#L56-L58', 'ml.put_trained_model.OneHotEncodingPreprocessor': 'ml/put_trained_model/types.ts#L44-L47', 'ml.put_trained_model.Preprocessor': 'ml/put_trained_model/types.ts#L31-L36', -'ml.put_trained_model.Request': 'ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L138', +'ml.put_trained_model.Request': 'ml/put_trained_model/MlPutTrainedModelRequest.ts#L31-L140', 'ml.put_trained_model.Response': 'ml/put_trained_model/MlPutTrainedModelResponse.ts#L22-L25', 'ml.put_trained_model.TargetMeanEncodingPreprocessor': 'ml/put_trained_model/types.ts#L49-L54', 'ml.put_trained_model.TrainedModel': 'ml/put_trained_model/types.ts#L60-L72', 'ml.put_trained_model.TrainedModelTree': 'ml/put_trained_model/types.ts#L74-L79', 'ml.put_trained_model.TrainedModelTreeNode': 'ml/put_trained_model/types.ts#L81-L91', -'ml.put_trained_model.Weights': 'ml/put_trained_model/types.ts#L108-L110', -'ml.put_trained_model_alias.Request': 'ml/put_trained_model_alias/MlPutTrainedModelAliasRequest.ts#L23-L75', +'ml.put_trained_model.Weights': 'ml/put_trained_model/types.ts#L109-L111', +'ml.put_trained_model_alias.Request': 'ml/put_trained_model_alias/MlPutTrainedModelAliasRequest.ts#L23-L77', 'ml.put_trained_model_alias.Response': 'ml/put_trained_model_alias/MlPutTrainedModelAliasResponse.ts#L22-L25', -'ml.put_trained_model_definition_part.Request': 'ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartRequest.ts#L24-L66', +'ml.put_trained_model_definition_part.Request': 'ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartRequest.ts#L24-L68', 'ml.put_trained_model_definition_part.Response': 'ml/put_trained_model_definition_part/MlPutTrainedModelDefinitionPartResponse.ts#L22-L25', -'ml.put_trained_model_vocabulary.Request': 'ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyRequest.ts#L24-L69', +'ml.put_trained_model_vocabulary.Request': 'ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyRequest.ts#L24-L71', 'ml.put_trained_model_vocabulary.Response': 'ml/put_trained_model_vocabulary/MlPutTrainedModelVocabularyResponse.ts#L22-L25', -'ml.reset_job.Request': 'ml/reset_job/MlResetJobRequest.ts#L23-L66', +'ml.reset_job.Request': 'ml/reset_job/MlResetJobRequest.ts#L23-L67', 'ml.reset_job.Response': 'ml/reset_job/MlResetJobResponse.ts#L22-L25', -'ml.revert_model_snapshot.Request': 'ml/revert_model_snapshot/MlRevertModelSnapshotRequest.ts#L23-L78', +'ml.revert_model_snapshot.Request': 'ml/revert_model_snapshot/MlRevertModelSnapshotRequest.ts#L23-L80', 'ml.revert_model_snapshot.Response': 'ml/revert_model_snapshot/MlRevertModelSnapshotResponse.ts#L22-L24', -'ml.set_upgrade_mode.Request': 'ml/set_upgrade_mode/MlSetUpgradeModeRequest.ts#L23-L65', +'ml.set_upgrade_mode.Request': 'ml/set_upgrade_mode/MlSetUpgradeModeRequest.ts#L24-L67', 'ml.set_upgrade_mode.Response': 'ml/set_upgrade_mode/MlSetUpgradeModeResponse.ts#L22-L25', -'ml.start_data_frame_analytics.Request': 'ml/start_data_frame_analytics/MlStartDataFrameAnalyticsRequest.ts#L24-L69', +'ml.start_data_frame_analytics.Request': 'ml/start_data_frame_analytics/MlStartDataFrameAnalyticsRequest.ts#L24-L83', 'ml.start_data_frame_analytics.Response': 'ml/start_data_frame_analytics/MlStartDataFrameAnalyticsResponse.ts#L22-L34', -'ml.start_datafeed.Request': 'ml/start_datafeed/MlStartDatafeedRequest.ts#L24-L99', +'ml.start_datafeed.Request': 'ml/start_datafeed/MlStartDatafeedRequest.ts#L24-L101', 'ml.start_datafeed.Response': 'ml/start_datafeed/MlStartDatafeedResponse.ts#L22-L34', -'ml.start_trained_model_deployment.Request': 'ml/start_trained_model_deployment/MlStartTrainedModelDeploymentRequest.ts#L30-L112', +'ml.start_trained_model_deployment.Request': 'ml/start_trained_model_deployment/MlStartTrainedModelDeploymentRequest.ts#L30-L115', 'ml.start_trained_model_deployment.Response': 'ml/start_trained_model_deployment/MlStartTrainedModelDeploymentResponse.ts#L22-L26', -'ml.stop_data_frame_analytics.Request': 'ml/stop_data_frame_analytics/MlStopDataFrameAnalyticsRequest.ts#L24-L79', +'ml.stop_data_frame_analytics.Request': 'ml/stop_data_frame_analytics/MlStopDataFrameAnalyticsRequest.ts#L24-L113', 'ml.stop_data_frame_analytics.Response': 'ml/stop_data_frame_analytics/MlStopDataFrameAnalyticsResponse.ts#L20-L22', -'ml.stop_datafeed.Request': 'ml/stop_datafeed/MlStopDatafeedRequest.ts#L24-L87', +'ml.stop_datafeed.Request': 'ml/stop_datafeed/MlStopDatafeedRequest.ts#L24-L89', 'ml.stop_datafeed.Response': 'ml/stop_datafeed/MlStopDatafeedResponse.ts#L20-L22', -'ml.stop_trained_model_deployment.Request': 'ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentRequest.ts#L23-L62', +'ml.stop_trained_model_deployment.Request': 'ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentRequest.ts#L23-L84', 'ml.stop_trained_model_deployment.Response': 'ml/stop_trained_model_deployment/MlStopTrainedModelDeploymentResponse.ts#L20-L22', -'ml.update_data_frame_analytics.Request': 'ml/update_data_frame_analytics/MlUpdateDataFrameAnalyticsRequest.ts#L24-L81', +'ml.update_data_frame_analytics.Request': 'ml/update_data_frame_analytics/MlUpdateDataFrameAnalyticsRequest.ts#L24-L83', 'ml.update_data_frame_analytics.Response': 'ml/update_data_frame_analytics/MlUpdateDataFrameAnalyticsResponse.ts#L30-L45', -'ml.update_datafeed.Request': 'ml/update_datafeed/MlUpdateDatafeedRequest.ts#L31-L165', +'ml.update_datafeed.Request': 'ml/update_datafeed/MlUpdateDatafeedRequest.ts#L31-L167', 'ml.update_datafeed.Response': 'ml/update_datafeed/MlUpdateDatafeedResponse.ts#L31-L52', -'ml.update_filter.Request': 'ml/update_filter/MlUpdateFilterRequest.ts#L23-L61', +'ml.update_filter.Request': 'ml/update_filter/MlUpdateFilterRequest.ts#L23-L63', 'ml.update_filter.Response': 'ml/update_filter/MlUpdateFilterResponse.ts#L22-L28', -'ml.update_job.Request': 'ml/update_job/MlUpdateJobRequest.ts#L33-L148', +'ml.update_job.Request': 'ml/update_job/MlUpdateJobRequest.ts#L33-L150', 'ml.update_job.Response': 'ml/update_job/MlUpdateJobResponse.ts#L29-L53', -'ml.update_model_snapshot.Request': 'ml/update_model_snapshot/MlUpdateModelSnapshotRequest.ts#L23-L64', +'ml.update_model_snapshot.Request': 'ml/update_model_snapshot/MlUpdateModelSnapshotRequest.ts#L23-L66', 'ml.update_model_snapshot.Response': 'ml/update_model_snapshot/MlUpdateModelSnapshotResponse.ts#L22-L27', -'ml.update_trained_model_deployment.Request': 'ml/update_trained_model_deployment/MlUpdateTrainedModelDeploymentRequest.ts#L25-L79', +'ml.update_trained_model_deployment.Request': 'ml/update_trained_model_deployment/MlUpdateTrainedModelDeploymentRequest.ts#L25-L81', 'ml.update_trained_model_deployment.Response': 'ml/update_trained_model_deployment/MlUpdateTrainedModelDeploymentResponse.ts#L22-L26', -'ml.upgrade_job_snapshot.Request': 'ml/upgrade_job_snapshot/MlUpgradeJobSnapshotRequest.ts#L24-L73', +'ml.upgrade_job_snapshot.Request': 'ml/upgrade_job_snapshot/MlUpgradeJobSnapshotRequest.ts#L24-L74', 'ml.upgrade_job_snapshot.Response': 'ml/upgrade_job_snapshot/MlUpgradeJobSnapshotResponse.ts#L22-L31', -'ml.validate.Request': 'ml/validate/MlValidateJobRequest.ts#L27-L53', +'ml.validate.Request': 'ml/validate/MlValidateJobRequest.ts#L27-L56', 'ml.validate.Response': 'ml/validate/MlValidateJobResponse.ts#L22-L25', -'ml.validate_detector.Request': 'ml/validate_detector/MlValidateDetectorRequest.ts#L23-L41', +'ml.validate_detector.Request': 'ml/validate_detector/MlValidateDetectorRequest.ts#L24-L44', 'ml.validate_detector.Response': 'ml/validate_detector/MlValidateDetectorResponse.ts#L22-L25', -'monitoring.bulk.Request': 'monitoring/bulk/BulkMonitoringRequest.ts#L24-L60', +'monitoring.bulk.Request': 'monitoring/bulk/BulkMonitoringRequest.ts#L25-L63', 'monitoring.bulk.Response': 'monitoring/bulk/BulkMonitoringResponse.ts#L23-L32', 'nodes._types.AdaptiveSelection': 'nodes/_types/Stats.ts#L441-L470', 'nodes._types.Breaker': 'nodes/_types/Stats.ts#L472-L497', @@ -2587,7 +2587,7 @@ 'nodes._types.ClusterAppliedStats': 'nodes/_types/Stats.ts#L223-L225', 'nodes._types.ClusterStateQueue': 'nodes/_types/Stats.ts#L250-L263', 'nodes._types.ClusterStateUpdate': 'nodes/_types/Stats.ts#L280-L345', -'nodes._types.Context': 'nodes/_types/Stats.ts#L1075-L1080', +'nodes._types.Context': 'nodes/_types/Stats.ts#L1076-L1081', 'nodes._types.Cpu': 'nodes/_types/Stats.ts#L577-L586', 'nodes._types.CpuAcct': 'nodes/_types/Stats.ts#L514-L523', 'nodes._types.DataPathStats': 'nodes/_types/Stats.ts#L588-L632', @@ -2627,87 +2627,87 @@ 'nodes._types.RepositoryLocation': 'nodes/_types/RepositoryMeteringInformation.ts#L68-L74', 'nodes._types.RepositoryMeteringInformation': 'nodes/_types/RepositoryMeteringInformation.ts#L24-L66', 'nodes._types.RequestCounts': 'nodes/_types/RepositoryMeteringInformation.ts#L76-L103', -'nodes._types.ScriptCache': 'nodes/_types/Stats.ts#L1109-L1123', +'nodes._types.ScriptCache': 'nodes/_types/Stats.ts#L1110-L1124', 'nodes._types.Scripting': 'nodes/_types/Stats.ts#L1055-L1073', 'nodes._types.SerializedClusterState': 'nodes/_types/Stats.ts#L234-L240', 'nodes._types.SerializedClusterStateDetail': 'nodes/_types/Stats.ts#L242-L248', 'nodes._types.SizeHttpHistogram': 'nodes/_types/Stats.ts#L716-L720', 'nodes._types.Stats': 'nodes/_types/Stats.ts#L30-L114', -'nodes._types.ThreadCount': 'nodes/_types/Stats.ts#L1082-L1107', +'nodes._types.ThreadCount': 'nodes/_types/Stats.ts#L1083-L1108', 'nodes._types.TimeHttpHistogram': 'nodes/_types/Stats.ts#L710-L714', -'nodes._types.Transport': 'nodes/_types/Stats.ts#L1125-L1168', -'nodes._types.TransportHistogram': 'nodes/_types/Stats.ts#L1170-L1184', -'nodes.clear_repositories_metering_archive.Request': 'nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveRequest.ts#L24-L53', +'nodes._types.Transport': 'nodes/_types/Stats.ts#L1126-L1169', +'nodes._types.TransportHistogram': 'nodes/_types/Stats.ts#L1171-L1185', +'nodes.clear_repositories_metering_archive.Request': 'nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveRequest.ts#L24-L54', 'nodes.clear_repositories_metering_archive.Response': 'nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveResponse.ts#L37-L40', 'nodes.clear_repositories_metering_archive.ResponseBase': 'nodes/clear_repositories_metering_archive/ClearRepositoriesMeteringArchiveResponse.ts#L25-L35', -'nodes.get_repositories_metering_info.Request': 'nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoRequest.ts#L23-L50', +'nodes.get_repositories_metering_info.Request': 'nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoRequest.ts#L23-L51', 'nodes.get_repositories_metering_info.Response': 'nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoResponse.ts#L36-L39', 'nodes.get_repositories_metering_info.ResponseBase': 'nodes/get_repositories_metering_info/GetRepositoriesMeteringInfoResponse.ts#L25-L34', -'nodes.hot_threads.Request': 'nodes/hot_threads/NodesHotThreadsRequest.ts#L25-L89', +'nodes.hot_threads.Request': 'nodes/hot_threads/NodesHotThreadsRequest.ts#L25-L94', 'nodes.hot_threads.Response': 'nodes/hot_threads/NodesHotThreadsResponse.ts#L20-L22', -'nodes.info.DeprecationIndexing': 'nodes/info/types.ts#L154-L156', +'nodes.info.DeprecationIndexing': 'nodes/info/types.ts#L154-L157', 'nodes.info.NodeInfo': 'nodes/info/types.ts#L32-L72', -'nodes.info.NodeInfoAction': 'nodes/info/types.ts#L194-L196', -'nodes.info.NodeInfoAggregation': 'nodes/info/types.ts#L250-L252', -'nodes.info.NodeInfoBootstrap': 'nodes/info/types.ts#L214-L216', -'nodes.info.NodeInfoClient': 'nodes/info/types.ts#L198-L200', -'nodes.info.NodeInfoDiscover': 'nodes/info/types.ts#L183-L192', -'nodes.info.NodeInfoHttp': 'nodes/info/types.ts#L326-L331', -'nodes.info.NodeInfoIngest': 'nodes/info/types.ts#L242-L244', +'nodes.info.NodeInfoAction': 'nodes/info/types.ts#L195-L197', +'nodes.info.NodeInfoAggregation': 'nodes/info/types.ts#L253-L255', +'nodes.info.NodeInfoBootstrap': 'nodes/info/types.ts#L217-L219', +'nodes.info.NodeInfoClient': 'nodes/info/types.ts#L199-L201', +'nodes.info.NodeInfoDiscover': 'nodes/info/types.ts#L184-L193', +'nodes.info.NodeInfoHttp': 'nodes/info/types.ts#L329-L334', +'nodes.info.NodeInfoIngest': 'nodes/info/types.ts#L245-L247', 'nodes.info.NodeInfoIngestDownloader': 'nodes/info/types.ts#L138-L140', 'nodes.info.NodeInfoIngestInfo': 'nodes/info/types.ts#L134-L136', -'nodes.info.NodeInfoIngestProcessor': 'nodes/info/types.ts#L246-L248', -'nodes.info.NodeInfoJvmMemory': 'nodes/info/types.ts#L333-L344', -'nodes.info.NodeInfoMemory': 'nodes/info/types.ts#L346-L349', -'nodes.info.NodeInfoOSCPU': 'nodes/info/types.ts#L351-L360', -'nodes.info.NodeInfoPath': 'nodes/info/types.ts#L168-L173', -'nodes.info.NodeInfoRepositories': 'nodes/info/types.ts#L175-L177', -'nodes.info.NodeInfoRepositoriesUrl': 'nodes/info/types.ts#L179-L181', -'nodes.info.NodeInfoScript': 'nodes/info/types.ts#L304-L307', -'nodes.info.NodeInfoSearch': 'nodes/info/types.ts#L309-L311', -'nodes.info.NodeInfoSearchRemote': 'nodes/info/types.ts#L313-L315', +'nodes.info.NodeInfoIngestProcessor': 'nodes/info/types.ts#L249-L251', +'nodes.info.NodeInfoJvmMemory': 'nodes/info/types.ts#L336-L347', +'nodes.info.NodeInfoMemory': 'nodes/info/types.ts#L349-L352', +'nodes.info.NodeInfoOSCPU': 'nodes/info/types.ts#L354-L363', +'nodes.info.NodeInfoPath': 'nodes/info/types.ts#L169-L174', +'nodes.info.NodeInfoRepositories': 'nodes/info/types.ts#L176-L178', +'nodes.info.NodeInfoRepositoriesUrl': 'nodes/info/types.ts#L180-L182', +'nodes.info.NodeInfoScript': 'nodes/info/types.ts#L307-L310', +'nodes.info.NodeInfoSearch': 'nodes/info/types.ts#L312-L314', +'nodes.info.NodeInfoSearchRemote': 'nodes/info/types.ts#L316-L318', 'nodes.info.NodeInfoSettings': 'nodes/info/types.ts#L79-L95', 'nodes.info.NodeInfoSettingsCluster': 'nodes/info/types.ts#L142-L152', -'nodes.info.NodeInfoSettingsClusterElection': 'nodes/info/types.ts#L158-L160', -'nodes.info.NodeInfoSettingsHttp': 'nodes/info/types.ts#L202-L207', -'nodes.info.NodeInfoSettingsHttpType': 'nodes/info/types.ts#L209-L212', +'nodes.info.NodeInfoSettingsClusterElection': 'nodes/info/types.ts#L159-L161', +'nodes.info.NodeInfoSettingsHttp': 'nodes/info/types.ts#L203-L210', +'nodes.info.NodeInfoSettingsHttpType': 'nodes/info/types.ts#L212-L215', 'nodes.info.NodeInfoSettingsIngest': 'nodes/info/types.ts#L97-L132', -'nodes.info.NodeInfoSettingsNetwork': 'nodes/info/types.ts#L238-L240', -'nodes.info.NodeInfoSettingsNode': 'nodes/info/types.ts#L162-L166', -'nodes.info.NodeInfoSettingsTransport': 'nodes/info/types.ts#L218-L227', -'nodes.info.NodeInfoSettingsTransportFeatures': 'nodes/info/types.ts#L234-L236', -'nodes.info.NodeInfoSettingsTransportType': 'nodes/info/types.ts#L229-L232', -'nodes.info.NodeInfoTransport': 'nodes/info/types.ts#L362-L366', -'nodes.info.NodeInfoXpack': 'nodes/info/types.ts#L254-L259', -'nodes.info.NodeInfoXpackLicense': 'nodes/info/types.ts#L296-L298', -'nodes.info.NodeInfoXpackLicenseType': 'nodes/info/types.ts#L300-L302', -'nodes.info.NodeInfoXpackMl': 'nodes/info/types.ts#L268-L270', -'nodes.info.NodeInfoXpackSecurity': 'nodes/info/types.ts#L261-L266', -'nodes.info.NodeInfoXpackSecurityAuthc': 'nodes/info/types.ts#L276-L279', -'nodes.info.NodeInfoXpackSecurityAuthcRealms': 'nodes/info/types.ts#L281-L285', -'nodes.info.NodeInfoXpackSecurityAuthcRealmsStatus': 'nodes/info/types.ts#L291-L294', -'nodes.info.NodeInfoXpackSecurityAuthcToken': 'nodes/info/types.ts#L287-L289', -'nodes.info.NodeInfoXpackSecuritySsl': 'nodes/info/types.ts#L272-L274', -'nodes.info.NodeJvmInfo': 'nodes/info/types.ts#L368-L381', -'nodes.info.NodeOperatingSystemInfo': 'nodes/info/types.ts#L383-L400', -'nodes.info.NodeProcessInfo': 'nodes/info/types.ts#L402-L409', -'nodes.info.NodeThreadPoolInfo': 'nodes/info/types.ts#L317-L324', +'nodes.info.NodeInfoSettingsNetwork': 'nodes/info/types.ts#L241-L243', +'nodes.info.NodeInfoSettingsNode': 'nodes/info/types.ts#L163-L167', +'nodes.info.NodeInfoSettingsTransport': 'nodes/info/types.ts#L221-L230', +'nodes.info.NodeInfoSettingsTransportFeatures': 'nodes/info/types.ts#L237-L239', +'nodes.info.NodeInfoSettingsTransportType': 'nodes/info/types.ts#L232-L235', +'nodes.info.NodeInfoTransport': 'nodes/info/types.ts#L365-L369', +'nodes.info.NodeInfoXpack': 'nodes/info/types.ts#L257-L262', +'nodes.info.NodeInfoXpackLicense': 'nodes/info/types.ts#L299-L301', +'nodes.info.NodeInfoXpackLicenseType': 'nodes/info/types.ts#L303-L305', +'nodes.info.NodeInfoXpackMl': 'nodes/info/types.ts#L271-L273', +'nodes.info.NodeInfoXpackSecurity': 'nodes/info/types.ts#L264-L269', +'nodes.info.NodeInfoXpackSecurityAuthc': 'nodes/info/types.ts#L279-L282', +'nodes.info.NodeInfoXpackSecurityAuthcRealms': 'nodes/info/types.ts#L284-L288', +'nodes.info.NodeInfoXpackSecurityAuthcRealmsStatus': 'nodes/info/types.ts#L294-L297', +'nodes.info.NodeInfoXpackSecurityAuthcToken': 'nodes/info/types.ts#L290-L292', +'nodes.info.NodeInfoXpackSecuritySsl': 'nodes/info/types.ts#L275-L277', +'nodes.info.NodeJvmInfo': 'nodes/info/types.ts#L371-L385', +'nodes.info.NodeOperatingSystemInfo': 'nodes/info/types.ts#L387-L404', +'nodes.info.NodeProcessInfo': 'nodes/info/types.ts#L406-L413', +'nodes.info.NodeThreadPoolInfo': 'nodes/info/types.ts#L320-L327', 'nodes.info.RemoveClusterServer': 'nodes/info/types.ts#L74-L77', -'nodes.info.Request': 'nodes/info/NodesInfoRequest.ts#L24-L71', +'nodes.info.Request': 'nodes/info/NodesInfoRequest.ts#L24-L72', 'nodes.info.Response': 'nodes/info/NodesInfoResponse.ts#L30-L33', 'nodes.info.ResponseBase': 'nodes/info/NodesInfoResponse.ts#L25-L28', -'nodes.reload_secure_settings.Request': 'nodes/reload_secure_settings/ReloadSecureSettingsRequest.ts#L24-L70', +'nodes.reload_secure_settings.Request': 'nodes/reload_secure_settings/ReloadSecureSettingsRequest.ts#L24-L72', 'nodes.reload_secure_settings.Response': 'nodes/reload_secure_settings/ReloadSecureSettingsResponse.ts#L30-L33', 'nodes.reload_secure_settings.ResponseBase': 'nodes/reload_secure_settings/ReloadSecureSettingsResponse.ts#L25-L28', -'nodes.stats.Request': 'nodes/stats/NodesStatsRequest.ts#L24-L103', +'nodes.stats.Request': 'nodes/stats/NodesStatsRequest.ts#L30-L110', 'nodes.stats.Response': 'nodes/stats/NodesStatsResponse.ts#L30-L33', 'nodes.stats.ResponseBase': 'nodes/stats/NodesStatsResponse.ts#L25-L28', 'nodes.usage.NodeUsage': 'nodes/usage/types.ts#L25-L30', -'nodes.usage.Request': 'nodes/usage/NodesUsageRequest.ts#L24-L69', +'nodes.usage.Request': 'nodes/usage/NodesUsageRequest.ts#L24-L74', 'nodes.usage.Response': 'nodes/usage/NodesUsageResponse.ts#L30-L33', 'nodes.usage.ResponseBase': 'nodes/usage/NodesUsageResponse.ts#L25-L28', 'project.tags.ProjectTags': 'project/tags/TagsResponse.ts#L33-L36', -'project.tags.Request': 'project/tags/TagsRequest.ts#L22-L38', +'project.tags.Request': 'project/tags/TagsRequest.ts#L23-L40', 'project.tags.Response': 'project/tags/TagsResponse.ts#L38-L43', 'project.tags.Tags': 'project/tags/TagsResponse.ts#L23-L31', 'query_rules._types.QueryRule': 'query_rules/_types/QueryRuleset.ts#L36-L58', @@ -2716,23 +2716,23 @@ 'query_rules._types.QueryRuleCriteriaType': 'query_rules/_types/QueryRuleset.ts#L95-L108', 'query_rules._types.QueryRuleType': 'query_rules/_types/QueryRuleset.ts#L60-L63', 'query_rules._types.QueryRuleset': 'query_rules/_types/QueryRuleset.ts#L25-L34', -'query_rules.delete_rule.Request': 'query_rules/delete_rule/QueryRuleDeleteRequest.ts#L22-L52', +'query_rules.delete_rule.Request': 'query_rules/delete_rule/QueryRuleDeleteRequest.ts#L22-L53', 'query_rules.delete_rule.Response': 'query_rules/delete_rule/QueryRuleDeleteResponse.ts#L22-L25', -'query_rules.delete_ruleset.Request': 'query_rules/delete_ruleset/QueryRulesetDeleteRequest.ts#L22-L47', +'query_rules.delete_ruleset.Request': 'query_rules/delete_ruleset/QueryRulesetDeleteRequest.ts#L22-L48', 'query_rules.delete_ruleset.Response': 'query_rules/delete_ruleset/QueryRulesetDeleteResponse.ts#L22-L25', -'query_rules.get_rule.Request': 'query_rules/get_rule/QueryRuleGetRequest.ts#L22-L51', +'query_rules.get_rule.Request': 'query_rules/get_rule/QueryRuleGetRequest.ts#L22-L52', 'query_rules.get_rule.Response': 'query_rules/get_rule/QueryRuleGetResponse.ts#L22-L25', -'query_rules.get_ruleset.Request': 'query_rules/get_ruleset/QueryRulesetGetRequest.ts#L22-L46', +'query_rules.get_ruleset.Request': 'query_rules/get_ruleset/QueryRulesetGetRequest.ts#L22-L47', 'query_rules.get_ruleset.Response': 'query_rules/get_ruleset/QueryRulesetGetResponse.ts#L22-L25', 'query_rules.list_rulesets.QueryRulesetListItem': 'query_rules/list_rulesets/types.ts#L23-L44', -'query_rules.list_rulesets.Request': 'query_rules/list_rulesets/QueryRulesetListRequest.ts#L22-L52', +'query_rules.list_rulesets.Request': 'query_rules/list_rulesets/QueryRulesetListRequest.ts#L23-L54', 'query_rules.list_rulesets.Response': 'query_rules/list_rulesets/QueryRulesetListResponse.ts#L23-L28', -'query_rules.put_rule.Request': 'query_rules/put_rule/QueryRulePutRequest.ts#L28-L81', +'query_rules.put_rule.Request': 'query_rules/put_rule/QueryRulePutRequest.ts#L28-L83', 'query_rules.put_rule.Response': 'query_rules/put_rule/QueryRulePutResponse.ts#L22-L26', -'query_rules.put_ruleset.Request': 'query_rules/put_ruleset/QueryRulesetPutRequest.ts#L23-L60', +'query_rules.put_ruleset.Request': 'query_rules/put_ruleset/QueryRulesetPutRequest.ts#L23-L62', 'query_rules.put_ruleset.Response': 'query_rules/put_ruleset/QueryRulesetPutResponse.ts#L22-L26', 'query_rules.test.QueryRulesetMatchedRule': 'query_rules/test/QueryRulesetTestResponse.ts#L30-L39', -'query_rules.test.Request': 'query_rules/test/QueryRulesetTestRequest.ts#L24-L58', +'query_rules.test.Request': 'query_rules/test/QueryRulesetTestRequest.ts#L24-L60', 'query_rules.test.Response': 'query_rules/test/QueryRulesetTestResponse.ts#L23-L28', 'rollup._types.DateHistogramGrouping': 'rollup/_types/Groupings.ts#L42-L73', 'rollup._types.FieldMetric': 'rollup/_types/Metric.ts#L30-L35', @@ -2740,32 +2740,32 @@ 'rollup._types.HistogramGrouping': 'rollup/_types/Groupings.ts#L84-L97', 'rollup._types.Metric': 'rollup/_types/Metric.ts#L22-L28', 'rollup._types.TermsGrouping': 'rollup/_types/Groupings.ts#L75-L82', -'rollup.delete_job.Request': 'rollup/delete_job/DeleteRollupJobRequest.ts#L23-L67', +'rollup.delete_job.Request': 'rollup/delete_job/DeleteRollupJobRequest.ts#L23-L68', 'rollup.delete_job.Response': 'rollup/delete_job/DeleteRollupJobResponse.ts#L22-L27', 'rollup.get_jobs.IndexingJobState': 'rollup/get_jobs/types.ts#L77-L83', -'rollup.get_jobs.Request': 'rollup/get_jobs/GetRollupJobRequest.ts#L23-L55', +'rollup.get_jobs.Request': 'rollup/get_jobs/GetRollupJobRequest.ts#L23-L56', 'rollup.get_jobs.Response': 'rollup/get_jobs/GetRollupJobResponse.ts#L22-L24', 'rollup.get_jobs.RollupJob': 'rollup/get_jobs/types.ts#L28-L43', 'rollup.get_jobs.RollupJobConfiguration': 'rollup/get_jobs/types.ts#L45-L54', 'rollup.get_jobs.RollupJobStats': 'rollup/get_jobs/types.ts#L56-L69', 'rollup.get_jobs.RollupJobStatus': 'rollup/get_jobs/types.ts#L71-L75', -'rollup.get_rollup_caps.Request': 'rollup/get_rollup_caps/GetRollupCapabilitiesRequest.ts#L23-L58', +'rollup.get_rollup_caps.Request': 'rollup/get_rollup_caps/GetRollupCapabilitiesRequest.ts#L23-L59', 'rollup.get_rollup_caps.Response': 'rollup/get_rollup_caps/GetRollupCapabilitiesResponse.ts#L24-L27', 'rollup.get_rollup_caps.RollupCapabilities': 'rollup/get_rollup_caps/types.ts#L24-L29', 'rollup.get_rollup_caps.RollupCapabilitySummary': 'rollup/get_rollup_caps/types.ts#L31-L36', 'rollup.get_rollup_caps.RollupFieldSummary': 'rollup/get_rollup_caps/types.ts#L38-L42', 'rollup.get_rollup_index_caps.IndexCapabilities': 'rollup/get_rollup_index_caps/types.ts#L24-L26', -'rollup.get_rollup_index_caps.Request': 'rollup/get_rollup_index_caps/GetRollupIndexCapabilitiesRequest.ts#L23-L51', +'rollup.get_rollup_index_caps.Request': 'rollup/get_rollup_index_caps/GetRollupIndexCapabilitiesRequest.ts#L23-L52', 'rollup.get_rollup_index_caps.Response': 'rollup/get_rollup_index_caps/GetRollupIndexCapabilitiesResponse.ts#L24-L27', 'rollup.get_rollup_index_caps.RollupJobSummary': 'rollup/get_rollup_index_caps/types.ts#L28-L33', 'rollup.get_rollup_index_caps.RollupJobSummaryField': 'rollup/get_rollup_index_caps/types.ts#L35-L39', -'rollup.put_job.Request': 'rollup/put_job/CreateRollupJobRequest.ts#L27-L105', +'rollup.put_job.Request': 'rollup/put_job/CreateRollupJobRequest.ts#L27-L107', 'rollup.put_job.Response': 'rollup/put_job/CreateRollupJobResponse.ts#L22-L25', -'rollup.rollup_search.Request': 'rollup/rollup_search/RollupSearchRequest.ts#L27-L90', +'rollup.rollup_search.Request': 'rollup/rollup_search/RollupSearchRequest.ts#L27-L97', 'rollup.rollup_search.Response': 'rollup/rollup_search/RollupSearchResponse.ts#L27-L36', -'rollup.start_job.Request': 'rollup/start_job/StartRollupJobRequest.ts#L23-L47', +'rollup.start_job.Request': 'rollup/start_job/StartRollupJobRequest.ts#L23-L48', 'rollup.start_job.Response': 'rollup/start_job/StartRollupJobResponse.ts#L20-L22', -'rollup.stop_job.Request': 'rollup/stop_job/StopRollupJobRequest.ts#L24-L73', +'rollup.stop_job.Request': 'rollup/stop_job/StopRollupJobRequest.ts#L24-L74', 'rollup.stop_job.Response': 'rollup/stop_job/StopRollupJobResponse.ts#L20-L22', 'search_application._types.AnalyticsCollection': 'search_application/_types/BehavioralAnalytics.ts#L22-L27', 'search_application._types.EventDataStream': 'search_application/_types/BehavioralAnalytics.ts#L29-L31', @@ -2773,38 +2773,38 @@ 'search_application._types.SearchApplication': 'search_application/_types/SearchApplication.ts#L24-L33', 'search_application._types.SearchApplicationParameters': 'search_application/_types/SearchApplicationParameters.ts#L23-L36', 'search_application._types.SearchApplicationTemplate': 'search_application/_types/SearchApplicationTemplate.ts#L22-L27', -'search_application.delete.Request': 'search_application/delete/SearchApplicationsDeleteRequest.ts#L22-L46', +'search_application.delete.Request': 'search_application/delete/SearchApplicationsDeleteRequest.ts#L22-L47', 'search_application.delete.Response': 'search_application/delete/SearchApplicationsDeleteResponse.ts#L22-L25', -'search_application.delete_behavioral_analytics.Request': 'search_application/delete_behavioral_analytics/BehavioralAnalyticsDeleteRequest.ts#L22-L46', +'search_application.delete_behavioral_analytics.Request': 'search_application/delete_behavioral_analytics/BehavioralAnalyticsDeleteRequest.ts#L22-L47', 'search_application.delete_behavioral_analytics.Response': 'search_application/delete_behavioral_analytics/BehavioralAnalyticsDeleteResponse.ts#L22-L25', -'search_application.get.Request': 'search_application/get/SearchApplicationsGetRequest.ts#L22-L44', +'search_application.get.Request': 'search_application/get/SearchApplicationsGetRequest.ts#L22-L45', 'search_application.get.Response': 'search_application/get/SearchApplicationsGetResponse.ts#L22-L25', -'search_application.get_behavioral_analytics.Request': 'search_application/get_behavioral_analytics/BehavioralAnalyticsGetRequest.ts#L22-L49', +'search_application.get_behavioral_analytics.Request': 'search_application/get_behavioral_analytics/BehavioralAnalyticsGetRequest.ts#L22-L50', 'search_application.get_behavioral_analytics.Response': 'search_application/get_behavioral_analytics/BehavioralAnalyticsGetResponse.ts#L24-L27', -'search_application.list.Request': 'search_application/list/SearchApplicationsListRequest.ts#L22-L54', +'search_application.list.Request': 'search_application/list/SearchApplicationsListRequest.ts#L23-L56', 'search_application.list.Response': 'search_application/list/SearchApplicationsListResponse.ts#L23-L28', -'search_application.post_behavioral_analytics_event.Request': 'search_application/post_behavioral_analytics_event/BehavioralAnalyticsEventPostRequest.ts#L24-L59', +'search_application.post_behavioral_analytics_event.Request': 'search_application/post_behavioral_analytics_event/BehavioralAnalyticsEventPostRequest.ts#L24-L61', 'search_application.post_behavioral_analytics_event.Response': 'search_application/post_behavioral_analytics_event/BehavioralAnalyticsEventPostResponse.ts#L22-L47', -'search_application.put.Request': 'search_application/put/SearchApplicationsPutRequest.ts#L23-L58', +'search_application.put.Request': 'search_application/put/SearchApplicationsPutRequest.ts#L23-L60', 'search_application.put.Response': 'search_application/put/SearchApplicationsPutResponse.ts#L22-L26', 'search_application.put_behavioral_analytics.AnalyticsAcknowledgeResponseBase': 'search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L28-L33', -'search_application.put_behavioral_analytics.Request': 'search_application/put_behavioral_analytics/BehavioralAnalyticsPutRequest.ts#L22-L45', +'search_application.put_behavioral_analytics.Request': 'search_application/put_behavioral_analytics/BehavioralAnalyticsPutRequest.ts#L22-L46', 'search_application.put_behavioral_analytics.Response': 'search_application/put_behavioral_analytics/BehavioralAnalyticsPutResponse.ts#L23-L26', -'search_application.render_query.Request': 'search_application/render_query/SearchApplicationsRenderQueryRequest.ts#L24-L55', +'search_application.render_query.Request': 'search_application/render_query/SearchApplicationsRenderQueryRequest.ts#L24-L57', 'search_application.render_query.Response': 'search_application/render_query/SearchApplicationsRenderQueryResponse.ts#L20-L22', -'search_application.search.Request': 'search_application/search/SearchApplicationsSearchRequest.ts#L24-L62', +'search_application.search.Request': 'search_application/search/SearchApplicationsSearchRequest.ts#L24-L64', 'search_application.search.Response': 'search_application/search/SearchApplicationsSearchResponse.ts#L22-L25', 'searchable_snapshots._types.StatsLevel': 'searchable_snapshots/_types/stats.ts#L20-L24', 'searchable_snapshots.cache_stats.Node': 'searchable_snapshots/cache_stats/Response.ts#L30-L32', -'searchable_snapshots.cache_stats.Request': 'searchable_snapshots/cache_stats/Request.ts#L24-L54', +'searchable_snapshots.cache_stats.Request': 'searchable_snapshots/cache_stats/Request.ts#L24-L55', 'searchable_snapshots.cache_stats.Response': 'searchable_snapshots/cache_stats/Response.ts#L24-L28', 'searchable_snapshots.cache_stats.Shared': 'searchable_snapshots/cache_stats/Response.ts#L34-L43', -'searchable_snapshots.clear_cache.Request': 'searchable_snapshots/clear_cache/SearchableSnapshotsClearCacheRequest.ts#L23-L58', +'searchable_snapshots.clear_cache.Request': 'searchable_snapshots/clear_cache/SearchableSnapshotsClearCacheRequest.ts#L23-L69', 'searchable_snapshots.clear_cache.Response': 'searchable_snapshots/clear_cache/SearchableSnapshotsClearCacheResponse.ts#L22-L25', 'searchable_snapshots.mount.MountedSnapshot': 'searchable_snapshots/mount/types.ts#L23-L27', -'searchable_snapshots.mount.Request': 'searchable_snapshots/mount/SearchableSnapshotsMountRequest.ts#L26-L93', +'searchable_snapshots.mount.Request': 'searchable_snapshots/mount/SearchableSnapshotsMountRequest.ts#L26-L95', 'searchable_snapshots.mount.Response': 'searchable_snapshots/mount/SearchableSnapshotsMountResponse.ts#L22-L26', -'searchable_snapshots.stats.Request': 'searchable_snapshots/stats/SearchableSnapshotsStatsRequest.ts#L24-L56', +'searchable_snapshots.stats.Request': 'searchable_snapshots/stats/SearchableSnapshotsStatsRequest.ts#L24-L58', 'searchable_snapshots.stats.Response': 'searchable_snapshots/stats/SearchableSnapshotsStatsResponse.ts#L22-L27', 'security._types.Access': 'security/_types/Access.ts#L22-L31', 'security._types.ApiKey': 'security/_types/ApiKey.ts#L27-L113', @@ -2850,184 +2850,184 @@ 'security._types.UserProfileHitMetadata': 'security/_types/UserProfile.ts#L27-L30', 'security._types.UserProfileUser': 'security/_types/UserProfile.ts#L32-L39', 'security._types.UserProfileWithMetadata': 'security/_types/UserProfile.ts#L49-L52', -'security.activate_user_profile.Request': 'security/activate_user_profile/Request.ts#L23-L76', +'security.activate_user_profile.Request': 'security/activate_user_profile/Request.ts#L24-L79', 'security.activate_user_profile.Response': 'security/activate_user_profile/Response.ts#L22-L25', 'security.authenticate.AuthenticateApiKey': 'security/authenticate/SecurityAuthenticateResponse.ts#L45-L50', -'security.authenticate.Request': 'security/authenticate/SecurityAuthenticateRequest.ts#L22-L41', +'security.authenticate.Request': 'security/authenticate/SecurityAuthenticateRequest.ts#L23-L43', 'security.authenticate.Response': 'security/authenticate/SecurityAuthenticateResponse.ts#L25-L43', 'security.authenticate.Token': 'security/authenticate/types.ts#L22-L29', -'security.bulk_delete_role.Request': 'security/bulk_delete_role/SecurityBulkDeleteRoleRequest.ts#L23-L50', +'security.bulk_delete_role.Request': 'security/bulk_delete_role/SecurityBulkDeleteRoleRequest.ts#L23-L55', 'security.bulk_delete_role.Response': 'security/bulk_delete_role/SecurityBulkDeleteRoleResponse.ts#L22-L37', -'security.bulk_put_role.Request': 'security/bulk_put_role/SecurityBulkPutRoleRequest.ts#L25-L52', +'security.bulk_put_role.Request': 'security/bulk_put_role/SecurityBulkPutRoleRequest.ts#L25-L57', 'security.bulk_put_role.Response': 'security/bulk_put_role/SecurityBulkPutRoleResponse.ts#L22-L41', -'security.bulk_update_api_keys.Request': 'security/bulk_update_api_keys/SecurityBulkUpdateApiKeysRequest.ts#L26-L84', +'security.bulk_update_api_keys.Request': 'security/bulk_update_api_keys/SecurityBulkUpdateApiKeysRequest.ts#L26-L86', 'security.bulk_update_api_keys.Response': 'security/bulk_update_api_keys/SecurityBulkUpdateApiKeysResponse.ts#L22-L28', -'security.change_password.Request': 'security/change_password/SecurityChangePasswordRequest.ts#L23-L65', +'security.change_password.Request': 'security/change_password/SecurityChangePasswordRequest.ts#L23-L70', 'security.change_password.Response': 'security/change_password/SecurityChangePasswordResponse.ts#L20-L22', -'security.clear_api_key_cache.Request': 'security/clear_api_key_cache/SecurityClearApiKeyCacheRequest.ts#L23-L49', +'security.clear_api_key_cache.Request': 'security/clear_api_key_cache/SecurityClearApiKeyCacheRequest.ts#L23-L50', 'security.clear_api_key_cache.Response': 'security/clear_api_key_cache/SecurityClearApiKeyCacheResponse.ts#L25-L32', -'security.clear_cached_privileges.Request': 'security/clear_cached_privileges/SecurityClearCachedPrivilegesRequest.ts#L23-L49', +'security.clear_cached_privileges.Request': 'security/clear_cached_privileges/SecurityClearCachedPrivilegesRequest.ts#L23-L50', 'security.clear_cached_privileges.Response': 'security/clear_cached_privileges/SecurityClearCachedPrivilegesResponse.ts#L25-L32', -'security.clear_cached_realms.Request': 'security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts#L23-L60', +'security.clear_cached_realms.Request': 'security/clear_cached_realms/SecurityClearCachedRealmsRequest.ts#L23-L61', 'security.clear_cached_realms.Response': 'security/clear_cached_realms/SecurityClearCachedRealmsResponse.ts#L25-L32', -'security.clear_cached_roles.Request': 'security/clear_cached_roles/ClearCachedRolesRequest.ts#L23-L48', +'security.clear_cached_roles.Request': 'security/clear_cached_roles/ClearCachedRolesRequest.ts#L23-L49', 'security.clear_cached_roles.Response': 'security/clear_cached_roles/ClearCachedRolesResponse.ts#L25-L32', -'security.clear_cached_service_tokens.Request': 'security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts#L23-L58', +'security.clear_cached_service_tokens.Request': 'security/clear_cached_service_tokens/ClearCachedServiceTokensRequest.ts#L23-L59', 'security.clear_cached_service_tokens.Response': 'security/clear_cached_service_tokens/ClearCachedServiceTokensResponse.ts#L25-L32', -'security.create_api_key.Request': 'security/create_api_key/SecurityCreateApiKeyRequest.ts#L26-L86', +'security.create_api_key.Request': 'security/create_api_key/SecurityCreateApiKeyRequest.ts#L26-L91', 'security.create_api_key.Response': 'security/create_api_key/SecurityCreateApiKeyResponse.ts#L23-L50', -'security.create_cross_cluster_api_key.Request': 'security/create_cross_cluster_api_key/CreateCrossClusterApiKeyRequest.ts#L25-L80', +'security.create_cross_cluster_api_key.Request': 'security/create_cross_cluster_api_key/CreateCrossClusterApiKeyRequest.ts#L25-L82', 'security.create_cross_cluster_api_key.Response': 'security/create_cross_cluster_api_key/CreateCrossClusterApiKeyResponse.ts#L23-L48', -'security.create_service_token.Request': 'security/create_service_token/CreateServiceTokenRequest.ts#L23-L72', +'security.create_service_token.Request': 'security/create_service_token/CreateServiceTokenRequest.ts#L23-L76', 'security.create_service_token.Response': 'security/create_service_token/CreateServiceTokenResponse.ts#L22-L30', 'security.create_service_token.Token': 'security/create_service_token/types.ts#L22-L25', 'security.delegate_pki.Authentication': 'security/delegate_pki/SecurityDelegatePkiResponse.ts#L43-L55', 'security.delegate_pki.AuthenticationRealm': 'security/delegate_pki/SecurityDelegatePkiResponse.ts#L57-L61', -'security.delegate_pki.Request': 'security/delegate_pki/SecurityDelegatePkiRequest.ts#L22-L57', +'security.delegate_pki.Request': 'security/delegate_pki/SecurityDelegatePkiRequest.ts#L23-L59', 'security.delegate_pki.Response': 'security/delegate_pki/SecurityDelegatePkiResponse.ts#L24-L41', 'security.delete_privileges.FoundStatus': 'security/delete_privileges/types.ts#L20-L22', -'security.delete_privileges.Request': 'security/delete_privileges/SecurityDeletePrivilegesRequest.ts#L23-L58', +'security.delete_privileges.Request': 'security/delete_privileges/SecurityDeletePrivilegesRequest.ts#L23-L62', 'security.delete_privileges.Response': 'security/delete_privileges/SecurityDeletePrivilegesResponse.ts#L23-L26', -'security.delete_role.Request': 'security/delete_role/SecurityDeleteRoleRequest.ts#L23-L49', +'security.delete_role.Request': 'security/delete_role/SecurityDeleteRoleRequest.ts#L23-L53', 'security.delete_role.Response': 'security/delete_role/SecurityDeleteRoleResponse.ts#L20-L28', -'security.delete_role_mapping.Request': 'security/delete_role_mapping/SecurityDeleteRoleMappingRequest.ts#L23-L53', +'security.delete_role_mapping.Request': 'security/delete_role_mapping/SecurityDeleteRoleMappingRequest.ts#L23-L57', 'security.delete_role_mapping.Response': 'security/delete_role_mapping/SecurityDeleteRoleMappingResponse.ts#L20-L28', -'security.delete_service_token.Request': 'security/delete_service_token/DeleteServiceTokenRequest.ts#L23-L58', +'security.delete_service_token.Request': 'security/delete_service_token/DeleteServiceTokenRequest.ts#L23-L62', 'security.delete_service_token.Response': 'security/delete_service_token/DeleteServiceTokenResponse.ts#L20-L28', -'security.delete_user.Request': 'security/delete_user/SecurityDeleteUserRequest.ts#L23-L48', +'security.delete_user.Request': 'security/delete_user/SecurityDeleteUserRequest.ts#L23-L52', 'security.delete_user.Response': 'security/delete_user/SecurityDeleteUserResponse.ts#L20-L28', -'security.disable_user.Request': 'security/disable_user/SecurityDisableUserRequest.ts#L23-L50', +'security.disable_user.Request': 'security/disable_user/SecurityDisableUserRequest.ts#L23-L54', 'security.disable_user.Response': 'security/disable_user/SecurityDisableUserResponse.ts#L20-L22', -'security.disable_user_profile.Request': 'security/disable_user_profile/Request.ts#L24-L63', +'security.disable_user_profile.Request': 'security/disable_user_profile/Request.ts#L24-L64', 'security.disable_user_profile.Response': 'security/disable_user_profile/Response.ts#L22-L25', -'security.enable_user.Request': 'security/enable_user/SecurityEnableUserRequest.ts#L23-L49', +'security.enable_user.Request': 'security/enable_user/SecurityEnableUserRequest.ts#L23-L53', 'security.enable_user.Response': 'security/enable_user/SecurityEnableUserResponse.ts#L20-L22', -'security.enable_user_profile.Request': 'security/enable_user_profile/Request.ts#L24-L64', +'security.enable_user_profile.Request': 'security/enable_user_profile/Request.ts#L24-L65', 'security.enable_user_profile.Response': 'security/enable_user_profile/Response.ts#L22-L25', -'security.enroll_kibana.Request': 'security/enroll_kibana/Request.ts#L22-L40', +'security.enroll_kibana.Request': 'security/enroll_kibana/Request.ts#L23-L43', 'security.enroll_kibana.Response': 'security/enroll_kibana/Response.ts#L20-L29', 'security.enroll_kibana.Token': 'security/enroll_kibana/Response.ts#L31-L41', -'security.enroll_node.Request': 'security/enroll_node/Request.ts#L22-L40', +'security.enroll_node.Request': 'security/enroll_node/Request.ts#L23-L43', 'security.enroll_node.Response': 'security/enroll_node/Response.ts#L20-L47', -'security.get_api_key.Request': 'security/get_api_key/SecurityGetApiKeyRequest.ts#L23-L95', +'security.get_api_key.Request': 'security/get_api_key/SecurityGetApiKeyRequest.ts#L23-L96', 'security.get_api_key.Response': 'security/get_api_key/SecurityGetApiKeyResponse.ts#L22-L24', -'security.get_builtin_privileges.Request': 'security/get_builtin_privileges/SecurityGetBuiltinPrivilegesRequest.ts#L22-L40', +'security.get_builtin_privileges.Request': 'security/get_builtin_privileges/SecurityGetBuiltinPrivilegesRequest.ts#L23-L42', 'security.get_builtin_privileges.Response': 'security/get_builtin_privileges/SecurityGetBuiltinPrivilegesResponse.ts#L26-L42', -'security.get_privileges.Request': 'security/get_privileges/SecurityGetPrivilegesRequest.ts#L23-L65', +'security.get_privileges.Request': 'security/get_privileges/SecurityGetPrivilegesRequest.ts#L23-L66', 'security.get_privileges.Response': 'security/get_privileges/SecurityGetPrivilegesResponse.ts#L23-L29', -'security.get_role.Request': 'security/get_role/SecurityGetRoleRequest.ts#L23-L54', +'security.get_role.Request': 'security/get_role/SecurityGetRoleRequest.ts#L23-L55', 'security.get_role.Response': 'security/get_role/SecurityGetRoleResponse.ts#L23-L31', 'security.get_role.Role': 'security/get_role/types.ts#L32-L54', -'security.get_role_mapping.Request': 'security/get_role_mapping/SecurityGetRoleMappingRequest.ts#L23-L53', +'security.get_role_mapping.Request': 'security/get_role_mapping/SecurityGetRoleMappingRequest.ts#L23-L54', 'security.get_role_mapping.Response': 'security/get_role_mapping/SecurityGetRoleMappingResponse.ts#L23-L29', -'security.get_service_accounts.Request': 'security/get_service_accounts/GetServiceAccountsRequest.ts#L23-L64', +'security.get_service_accounts.Request': 'security/get_service_accounts/GetServiceAccountsRequest.ts#L23-L65', 'security.get_service_accounts.Response': 'security/get_service_accounts/GetServiceAccountsResponse.ts#L23-L29', 'security.get_service_accounts.RoleDescriptorWrapper': 'security/get_service_accounts/types.ts#L22-L24', 'security.get_service_credentials.NodesCredentials': 'security/get_service_credentials/types.ts#L23-L28', 'security.get_service_credentials.NodesCredentialsFileToken': 'security/get_service_credentials/types.ts#L30-L32', -'security.get_service_credentials.Request': 'security/get_service_credentials/GetServiceCredentialsRequest.ts#L23-L56', -'security.get_service_credentials.Response': 'security/get_service_credentials/GetServiceCredentialsResponse.ts#L25-L34', -'security.get_settings.Request': 'security/get_settings/SecurityGetSettingsRequest.ts#L23-L52', +'security.get_service_credentials.Request': 'security/get_service_credentials/GetServiceCredentialsRequest.ts#L23-L57', +'security.get_service_credentials.Response': 'security/get_service_credentials/GetServiceCredentialsResponse.ts#L25-L35', +'security.get_settings.Request': 'security/get_settings/SecurityGetSettingsRequest.ts#L24-L55', 'security.get_settings.Response': 'security/get_settings/SecurityGetSettingsResponse.ts#L21-L36', -'security.get_stats.Request': 'security/get_stats/SecurityStatsRequest.ts#L22-L40', +'security.get_stats.Request': 'security/get_stats/SecurityStatsRequest.ts#L23-L43', 'security.get_stats.Response': 'security/get_stats/SecurityStatsResponse.ts#L24-L31', 'security.get_token.AccessTokenGrantType': 'security/get_token/types.ts#L23-L48', 'security.get_token.AuthenticatedUser': 'security/get_token/types.ts#L60-L65', 'security.get_token.AuthenticationProvider': 'security/get_token/types.ts#L55-L58', -'security.get_token.Request': 'security/get_token/GetUserAccessTokenRequest.ts#L25-L90', +'security.get_token.Request': 'security/get_token/GetUserAccessTokenRequest.ts#L25-L92', 'security.get_token.Response': 'security/get_token/GetUserAccessTokenResponse.ts#L23-L33', 'security.get_token.UserRealm': 'security/get_token/types.ts#L50-L53', -'security.get_user.Request': 'security/get_user/SecurityGetUserRequest.ts#L23-L56', +'security.get_user.Request': 'security/get_user/SecurityGetUserRequest.ts#L23-L57', 'security.get_user.Response': 'security/get_user/SecurityGetUserResponse.ts#L23-L30', -'security.get_user_privileges.Request': 'security/get_user_privileges/SecurityGetUserPrivilegesRequest.ts#L22-L41', +'security.get_user_privileges.Request': 'security/get_user_privileges/SecurityGetUserPrivilegesRequest.ts#L23-L43', 'security.get_user_privileges.Response': 'security/get_user_privileges/SecurityGetUserPrivilegesResponse.ts#L28-L38', 'security.get_user_profile.GetUserProfileErrors': 'security/get_user_profile/types.ts#L25-L28', -'security.get_user_profile.Request': 'security/get_user_profile/Request.ts#L23-L59', +'security.get_user_profile.Request': 'security/get_user_profile/Request.ts#L24-L61', 'security.get_user_profile.Response': 'security/get_user_profile/Response.ts#L23-L33', 'security.grant_api_key.ApiKeyGrantType': 'security/grant_api_key/types.ts#L47-L50', 'security.grant_api_key.GrantApiKey': 'security/grant_api_key/types.ts#L25-L45', -'security.grant_api_key.Request': 'security/grant_api_key/SecurityGrantApiKeyRequest.ts#L24-L102', +'security.grant_api_key.Request': 'security/grant_api_key/SecurityGrantApiKeyRequest.ts#L24-L104', 'security.grant_api_key.Response': 'security/grant_api_key/SecurityGrantApiKeyResponse.ts#L23-L31', -'security.has_privileges.ApplicationPrivilegesCheck': 'security/has_privileges/types.ts#L24-L32', -'security.has_privileges.IndexPrivilegesCheck': 'security/has_privileges/types.ts#L34-L45', -'security.has_privileges.Request': 'security/has_privileges/SecurityHasPrivilegesRequest.ts#L25-L59', +'security.has_privileges.ApplicationPrivilegesCheck': 'security/has_privileges/types.ts#L24-L34', +'security.has_privileges.IndexPrivilegesCheck': 'security/has_privileges/types.ts#L36-L47', +'security.has_privileges.Request': 'security/has_privileges/SecurityHasPrivilegesRequest.ts#L25-L62', 'security.has_privileges.Response': 'security/has_privileges/SecurityHasPrivilegesResponse.ts#L24-L35', 'security.has_privileges_user_profile.HasPrivilegesUserProfileErrors': 'security/has_privileges_user_profile/types.ts#L39-L42', 'security.has_privileges_user_profile.PrivilegesCheck': 'security/has_privileges_user_profile/types.ts#L30-L37', -'security.has_privileges_user_profile.Request': 'security/has_privileges_user_profile/Request.ts#L24-L55', +'security.has_privileges_user_profile.Request': 'security/has_privileges_user_profile/Request.ts#L25-L58', 'security.has_privileges_user_profile.Response': 'security/has_privileges_user_profile/Response.ts#L23-L38', -'security.invalidate_api_key.Request': 'security/invalidate_api_key/SecurityInvalidateApiKeyRequest.ts#L23-L82', +'security.invalidate_api_key.Request': 'security/invalidate_api_key/SecurityInvalidateApiKeyRequest.ts#L23-L84', 'security.invalidate_api_key.Response': 'security/invalidate_api_key/SecurityInvalidateApiKeyResponse.ts#L23-L46', -'security.invalidate_token.Request': 'security/invalidate_token/SecurityInvalidateTokenRequest.ts#L23-L71', +'security.invalidate_token.Request': 'security/invalidate_token/SecurityInvalidateTokenRequest.ts#L23-L73', 'security.invalidate_token.Response': 'security/invalidate_token/SecurityInvalidateTokenResponse.ts#L23-L46', -'security.oidc_authenticate.Request': 'security/oidc_authenticate/Request.ts#L22-L61', +'security.oidc_authenticate.Request': 'security/oidc_authenticate/Request.ts#L23-L65', 'security.oidc_authenticate.Response': 'security/oidc_authenticate/Response.ts#L22-L41', -'security.oidc_logout.Request': 'security/oidc_logout/Request.ts#L22-L52', +'security.oidc_logout.Request': 'security/oidc_logout/Request.ts#L23-L55', 'security.oidc_logout.Response': 'security/oidc_logout/Response.ts#L20-L27', -'security.oidc_prepare_authentication.Request': 'security/oidc_prepare_authentication/Request.ts#L22-L71', +'security.oidc_prepare_authentication.Request': 'security/oidc_prepare_authentication/Request.ts#L23-L74', 'security.oidc_prepare_authentication.Response': 'security/oidc_prepare_authentication/Response.ts#L20-L30', -'security.put_privileges.Actions': 'security/put_privileges/types.ts#L22-L27', -'security.put_privileges.Request': 'security/put_privileges/SecurityPutPrivilegesRequest.ts#L25-L67', +'security.put_privileges.Actions': 'security/put_privileges/types.ts#L23-L28', +'security.put_privileges.Request': 'security/put_privileges/SecurityPutPrivilegesRequest.ts#L25-L72', 'security.put_privileges.Response': 'security/put_privileges/SecurityPutPrivilegesResponse.ts#L23-L28', -'security.put_role.Request': 'security/put_role/SecurityPutRoleRequest.ts#L32-L111', +'security.put_role.Request': 'security/put_role/SecurityPutRoleRequest.ts#L32-L116', 'security.put_role.Response': 'security/put_role/SecurityPutRoleResponse.ts#L22-L29', -'security.put_role_mapping.Request': 'security/put_role_mapping/SecurityPutRoleMappingRequest.ts#L25-L103', +'security.put_role_mapping.Request': 'security/put_role_mapping/SecurityPutRoleMappingRequest.ts#L25-L108', 'security.put_role_mapping.Response': 'security/put_role_mapping/SecurityPutRoleMappingResponse.ts#L22-L24', -'security.put_user.Request': 'security/put_user/SecurityPutUserRequest.ts#L23-L101', +'security.put_user.Request': 'security/put_user/SecurityPutUserRequest.ts#L29-L109', 'security.put_user.Response': 'security/put_user/SecurityPutUserResponse.ts#L20-L28', 'security.query_api_keys.ApiKeyAggregate': 'security/query_api_keys/types.ts#L122-L139', 'security.query_api_keys.ApiKeyAggregationContainer': 'security/query_api_keys/types.ts#L63-L120', 'security.query_api_keys.ApiKeyFiltersAggregation': 'security/query_api_keys/types.ts#L207-L227', 'security.query_api_keys.ApiKeyQueryContainer': 'security/query_api_keys/types.ts#L141-L205', -'security.query_api_keys.Request': 'security/query_api_keys/QueryApiKeysRequest.ts#L26-L127', +'security.query_api_keys.Request': 'security/query_api_keys/QueryApiKeysRequest.ts#L27-L130', 'security.query_api_keys.Response': 'security/query_api_keys/QueryApiKeysResponse.ts#L26-L45', 'security.query_role.QueryRole': 'security/query_role/types.ts#L103-L109', -'security.query_role.Request': 'security/query_role/QueryRolesRequest.ts#L25-L86', +'security.query_role.Request': 'security/query_role/QueryRolesRequest.ts#L26-L89', 'security.query_role.Response': 'security/query_role/QueryRolesResponse.ts#L23-L43', 'security.query_role.RoleQueryContainer': 'security/query_role/types.ts#L37-L101', 'security.query_user.QueryUser': 'security/query_user/types.ts#L103-L105', -'security.query_user.Request': 'security/query_user/SecurityQueryUserRequest.ts#L25-L91', +'security.query_user.Request': 'security/query_user/SecurityQueryUserRequest.ts#L26-L94', 'security.query_user.Response': 'security/query_user/SecurityQueryUserResponse.ts#L23-L38', 'security.query_user.UserQueryContainer': 'security/query_user/types.ts#L37-L101', -'security.saml_authenticate.Request': 'security/saml_authenticate/Request.ts#L23-L61', +'security.saml_authenticate.Request': 'security/saml_authenticate/Request.ts#L23-L63', 'security.saml_authenticate.Response': 'security/saml_authenticate/Response.ts#L22-L45', -'security.saml_complete_logout.Request': 'security/saml_complete_logout/Request.ts#L23-L61', -'security.saml_invalidate.Request': 'security/saml_invalidate/Request.ts#L22-L61', +'security.saml_complete_logout.Request': 'security/saml_complete_logout/Request.ts#L23-L63', +'security.saml_invalidate.Request': 'security/saml_invalidate/Request.ts#L23-L64', 'security.saml_invalidate.Response': 'security/saml_invalidate/Response.ts#L22-L37', -'security.saml_logout.Request': 'security/saml_logout/Request.ts#L22-L57', +'security.saml_logout.Request': 'security/saml_logout/Request.ts#L23-L60', 'security.saml_logout.Response': 'security/saml_logout/Response.ts#L20-L28', -'security.saml_prepare_authentication.Request': 'security/saml_prepare_authentication/Request.ts#L22-L67', +'security.saml_prepare_authentication.Request': 'security/saml_prepare_authentication/Request.ts#L23-L70', 'security.saml_prepare_authentication.Response': 'security/saml_prepare_authentication/Response.ts#L22-L37', -'security.saml_service_provider_metadata.Request': 'security/saml_service_provider_metadata/Request.ts#L23-L46', +'security.saml_service_provider_metadata.Request': 'security/saml_service_provider_metadata/Request.ts#L23-L48', 'security.saml_service_provider_metadata.Response': 'security/saml_service_provider_metadata/Response.ts#L20-L27', 'security.suggest_user_profiles.Hint': 'security/suggest_user_profiles/types.ts#L23-L34', -'security.suggest_user_profiles.Request': 'security/suggest_user_profiles/Request.ts#L24-L81', +'security.suggest_user_profiles.Request': 'security/suggest_user_profiles/Request.ts#L25-L84', 'security.suggest_user_profiles.Response': 'security/suggest_user_profiles/Response.ts#L29-L44', 'security.suggest_user_profiles.TotalUserProfiles': 'security/suggest_user_profiles/Response.ts#L24-L27', -'security.update_api_key.Request': 'security/update_api_key/Request.ts#L26-L91', +'security.update_api_key.Request': 'security/update_api_key/Request.ts#L26-L93', 'security.update_api_key.Response': 'security/update_api_key/Response.ts#L20-L28', -'security.update_cross_cluster_api_key.Request': 'security/update_cross_cluster_api_key/UpdateCrossClusterApiKeyRequest.ts#L25-L85', +'security.update_cross_cluster_api_key.Request': 'security/update_cross_cluster_api_key/UpdateCrossClusterApiKeyRequest.ts#L25-L87', 'security.update_cross_cluster_api_key.Response': 'security/update_cross_cluster_api_key/UpdateCrossClusterApiKeyResponse.ts#L20-L28', -'security.update_settings.Request': 'security/update_settings/SecurityUpdateSettingsRequest.ts#L24-L72', +'security.update_settings.Request': 'security/update_settings/SecurityUpdateSettingsRequest.ts#L25-L75', 'security.update_settings.Response': 'security/update_settings/SecurityUpdateSettingsResponse.ts#L20-L24', -'security.update_user_profile_data.Request': 'security/update_user_profile_data/Request.ts#L27-L98', +'security.update_user_profile_data.Request': 'security/update_user_profile_data/Request.ts#L27-L100', 'security.update_user_profile_data.Response': 'security/update_user_profile_data/Response.ts#L22-L25', 'shutdown._types.Type': 'shutdown/_types/types.ts#L20-L24', -'shutdown.delete_node.Request': 'shutdown/delete_node/ShutdownDeleteNodeRequest.ts#L24-L62', +'shutdown.delete_node.Request': 'shutdown/delete_node/ShutdownDeleteNodeRequest.ts#L24-L65', 'shutdown.delete_node.Response': 'shutdown/delete_node/ShutdownDeleteNodeResponse.ts#L22-L25', 'shutdown.get_node.NodeShutdownStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L29-L38', 'shutdown.get_node.PersistentTaskStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L56-L58', 'shutdown.get_node.PluginsStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L60-L62', -'shutdown.get_node.Request': 'shutdown/get_node/ShutdownGetNodeRequest.ts#L24-L59', +'shutdown.get_node.Request': 'shutdown/get_node/ShutdownGetNodeRequest.ts#L24-L62', 'shutdown.get_node.Response': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L23-L27', 'shutdown.get_node.ShardMigrationStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L52-L54', 'shutdown.get_node.ShutdownStatus': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L45-L50', 'shutdown.get_node.ShutdownType': 'shutdown/get_node/ShutdownGetNodeResponse.ts#L40-L43', -'shutdown.put_node.Request': 'shutdown/put_node/ShutdownPutNodeRequest.ts#L25-L108', +'shutdown.put_node.Request': 'shutdown/put_node/ShutdownPutNodeRequest.ts#L25-L110', 'shutdown.put_node.Response': 'shutdown/put_node/ShutdownPutNodeResponse.ts#L22-L25', 'simulate.ingest.IngestDocumentSimulation': 'simulate/ingest/SimulateIngestResponse.ts#L36-L80', -'simulate.ingest.MergeType': 'simulate/ingest/SimulateIngestRequest.ts#L111-L114', -'simulate.ingest.Request': 'simulate/ingest/SimulateIngestRequest.ts#L29-L109', +'simulate.ingest.MergeType': 'simulate/ingest/SimulateIngestRequest.ts#L113-L116', +'simulate.ingest.Request': 'simulate/ingest/SimulateIngestRequest.ts#L29-L111', 'simulate.ingest.Response': 'simulate/ingest/SimulateIngestResponse.ts#L28-L30', 'simulate.ingest.SimulateIngestDocumentResult': 'simulate/ingest/SimulateIngestResponse.ts#L32-L34', 'slm._types.Configuration': 'slm/_types/SnapshotLifecycle.ts#L109-L139', @@ -3038,23 +3038,23 @@ 'slm._types.SnapshotLifecycle': 'slm/_types/SnapshotLifecycle.ts#L38-L59', 'slm._types.SnapshotPolicyStats': 'slm/_types/SnapshotLifecycle.ts#L153-L159', 'slm._types.Statistics': 'slm/_types/SnapshotLifecycle.ts#L61-L84', -'slm.delete_lifecycle.Request': 'slm/delete_lifecycle/DeleteSnapshotLifecycleRequest.ts#L24-L59', +'slm.delete_lifecycle.Request': 'slm/delete_lifecycle/DeleteSnapshotLifecycleRequest.ts#L24-L61', 'slm.delete_lifecycle.Response': 'slm/delete_lifecycle/DeleteSnapshotLifecycleResponse.ts#L22-L25', -'slm.execute_lifecycle.Request': 'slm/execute_lifecycle/ExecuteSnapshotLifecycleRequest.ts#L24-L59', +'slm.execute_lifecycle.Request': 'slm/execute_lifecycle/ExecuteSnapshotLifecycleRequest.ts#L24-L61', 'slm.execute_lifecycle.Response': 'slm/execute_lifecycle/ExecuteSnapshotLifecycleResponse.ts#L22-L24', -'slm.execute_retention.Request': 'slm/execute_retention/ExecuteRetentionRequest.ts#L23-L55', +'slm.execute_retention.Request': 'slm/execute_retention/ExecuteRetentionRequest.ts#L24-L57', 'slm.execute_retention.Response': 'slm/execute_retention/ExecuteRetentionResponse.ts#L22-L25', -'slm.get_lifecycle.Request': 'slm/get_lifecycle/GetSnapshotLifecycleRequest.ts#L24-L65', +'slm.get_lifecycle.Request': 'slm/get_lifecycle/GetSnapshotLifecycleRequest.ts#L24-L64', 'slm.get_lifecycle.Response': 'slm/get_lifecycle/GetSnapshotLifecycleResponse.ts#L24-L27', -'slm.get_stats.Request': 'slm/get_stats/GetSnapshotLifecycleStatsRequest.ts#L23-L52', +'slm.get_stats.Request': 'slm/get_stats/GetSnapshotLifecycleStatsRequest.ts#L24-L54', 'slm.get_stats.Response': 'slm/get_stats/GetSnapshotLifecycleStatsResponse.ts#L24-L37', -'slm.get_status.Request': 'slm/get_status/GetSnapshotLifecycleManagementStatusRequest.ts#L23-L55', +'slm.get_status.Request': 'slm/get_status/GetSnapshotLifecycleManagementStatusRequest.ts#L24-L57', 'slm.get_status.Response': 'slm/get_status/GetSnapshotLifecycleManagementStatusResponse.ts#L22-L24', -'slm.put_lifecycle.Request': 'slm/put_lifecycle/PutSnapshotLifecycleRequest.ts#L26-L90', +'slm.put_lifecycle.Request': 'slm/put_lifecycle/PutSnapshotLifecycleRequest.ts#L26-L92', 'slm.put_lifecycle.Response': 'slm/put_lifecycle/PutSnapshotLifecycleResponse.ts#L22-L25', -'slm.start.Request': 'slm/start/StartSnapshotLifecycleManagementRequest.ts#L23-L57', +'slm.start.Request': 'slm/start/StartSnapshotLifecycleManagementRequest.ts#L24-L59', 'slm.start.Response': 'slm/start/StartSnapshotLifecycleManagementResponse.ts#L22-L25', -'slm.stop.Request': 'slm/stop/StopSnapshotLifecycleManagementRequest.ts#L23-L61', +'slm.stop.Request': 'slm/stop/StopSnapshotLifecycleManagementRequest.ts#L24-L63', 'slm.stop.Response': 'slm/stop/StopSnapshotLifecycleManagementResponse.ts#L22-L25', 'snapshot._types.AzureRepository': 'snapshot/_types/SnapshotRepository.ts#L40-L50', 'snapshot._types.AzureRepositorySettings': 'snapshot/_types/SnapshotRepository.ts#L145-L196', @@ -3087,83 +3087,83 @@ 'snapshot._types.SourceOnlyRepositorySettings': 'snapshot/_types/SnapshotRepository.ts#L414-L441', 'snapshot._types.Status': 'snapshot/_types/SnapshotStatus.ts#L26-L60', 'snapshot.cleanup_repository.CleanupRepositoryResults': 'snapshot/cleanup_repository/SnapshotCleanupRepositoryResponse.ts#L29-L37', -'snapshot.cleanup_repository.Request': 'snapshot/cleanup_repository/SnapshotCleanupRepositoryRequest.ts#L24-L64', +'snapshot.cleanup_repository.Request': 'snapshot/cleanup_repository/SnapshotCleanupRepositoryRequest.ts#L24-L65', 'snapshot.cleanup_repository.Response': 'snapshot/cleanup_repository/SnapshotCleanupRepositoryResponse.ts#L22-L27', -'snapshot.clone.Request': 'snapshot/clone/SnapshotCloneRequest.ts#L24-L71', +'snapshot.clone.Request': 'snapshot/clone/SnapshotCloneRequest.ts#L24-L73', 'snapshot.clone.Response': 'snapshot/clone/SnapshotCloneResponse.ts#L22-L25', -'snapshot.create.Request': 'snapshot/create/SnapshotCreateRequest.ts#L24-L127', +'snapshot.create.Request': 'snapshot/create/SnapshotCreateRequest.ts#L30-L135', 'snapshot.create.Response': 'snapshot/create/SnapshotCreateResponse.ts#L22-L35', -'snapshot.create_repository.Request': 'snapshot/create_repository/SnapshotCreateRepositoryRequest.ts#L25-L80', +'snapshot.create_repository.Request': 'snapshot/create_repository/SnapshotCreateRepositoryRequest.ts#L25-L82', 'snapshot.create_repository.Response': 'snapshot/create_repository/SnapshotCreateRepositoryResponse.ts#L22-L25', -'snapshot.delete.Request': 'snapshot/delete/SnapshotDeleteRequest.ts#L24-L66', +'snapshot.delete.Request': 'snapshot/delete/SnapshotDeleteRequest.ts#L24-L67', 'snapshot.delete.Response': 'snapshot/delete/SnapshotDeleteResponse.ts#L22-L25', -'snapshot.delete_repository.Request': 'snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts#L24-L65', +'snapshot.delete_repository.Request': 'snapshot/delete_repository/SnapshotDeleteRepositoryRequest.ts#L24-L66', 'snapshot.delete_repository.Response': 'snapshot/delete_repository/SnapshotDeleteRepositoryResponse.ts#L22-L25', -'snapshot.get.Request': 'snapshot/get/SnapshotGetRequest.ts#L28-L166', +'snapshot.get.Request': 'snapshot/get/SnapshotGetRequest.ts#L28-L167', 'snapshot.get.Response': 'snapshot/get/SnapshotGetResponse.ts#L25-L47', 'snapshot.get.SnapshotResponseItem': 'snapshot/get/SnapshotGetResponse.ts#L49-L53', -'snapshot.get_repository.Request': 'snapshot/get_repository/SnapshotGetRepositoryRequest.ts#L24-L69', +'snapshot.get_repository.Request': 'snapshot/get_repository/SnapshotGetRepositoryRequest.ts#L24-L70', 'snapshot.get_repository.Response': 'snapshot/get_repository/SnapshotGetRepositoryResponse.ts#L23-L26', 'snapshot.repository_analyze.BlobDetails': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L250-L284', 'snapshot.repository_analyze.DetailsInfo': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L286-L321', 'snapshot.repository_analyze.ReadBlobDetails': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L204-L248', 'snapshot.repository_analyze.ReadSummaryInfo': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L115-L160', -'snapshot.repository_analyze.Request': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryRequest.ts#L25-L226', +'snapshot.repository_analyze.Request': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryRequest.ts#L25-L227', 'snapshot.repository_analyze.Response': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L24-L108', 'snapshot.repository_analyze.SnapshotNodeInfo': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L110-L113', 'snapshot.repository_analyze.SummaryInfo': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L193-L202', 'snapshot.repository_analyze.WriteSummaryInfo': 'snapshot/repository_analyze/SnapshotAnalyzeRepositoryResponse.ts#L162-L191', -'snapshot.repository_verify_integrity.Request': 'snapshot/repository_verify_integrity/SnapshotRepositoryVerifyIntegrityRequest.ts#L24-L127', +'snapshot.repository_verify_integrity.Request': 'snapshot/repository_verify_integrity/SnapshotRepositoryVerifyIntegrityRequest.ts#L24-L128', 'snapshot.repository_verify_integrity.Response': 'snapshot/repository_verify_integrity/SnapshotRepositoryVerifyIntegrityResponse.ts#L22-L25', -'snapshot.restore.Request': 'snapshot/restore/SnapshotRestoreRequest.ts#L25-L176', +'snapshot.restore.Request': 'snapshot/restore/SnapshotRestoreRequest.ts#L25-L178', 'snapshot.restore.Response': 'snapshot/restore/SnapshotRestoreResponse.ts#L23-L28', 'snapshot.restore.SnapshotRestore': 'snapshot/restore/SnapshotRestoreResponse.ts#L30-L34', -'snapshot.status.Request': 'snapshot/status/SnapshotStatusRequest.ts#L24-L97', +'snapshot.status.Request': 'snapshot/status/SnapshotStatusRequest.ts#L24-L98', 'snapshot.status.Response': 'snapshot/status/SnapshotStatusResponse.ts#L22-L24', 'snapshot.verify_repository.CompactNodeInfo': 'snapshot/verify_repository/SnapshotVerifyRepositoryResponse.ts#L33-L40', -'snapshot.verify_repository.Request': 'snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts#L24-L64', +'snapshot.verify_repository.Request': 'snapshot/verify_repository/SnapshotVerifyRepositoryRequest.ts#L24-L65', 'snapshot.verify_repository.Response': 'snapshot/verify_repository/SnapshotVerifyRepositoryResponse.ts#L23-L31', 'sql._types.Column': 'sql/_types/types.ts#L23-L26', -'sql.clear_cursor.Request': 'sql/clear_cursor/ClearSqlCursorRequest.ts#L22-L43', +'sql.clear_cursor.Request': 'sql/clear_cursor/ClearSqlCursorRequest.ts#L23-L46', 'sql.clear_cursor.Response': 'sql/clear_cursor/ClearSqlCursorResponse.ts#L20-L22', -'sql.delete_async.Request': 'sql/delete_async/SqlDeleteAsyncRequest.ts#L23-L52', +'sql.delete_async.Request': 'sql/delete_async/SqlDeleteAsyncRequest.ts#L23-L53', 'sql.delete_async.Response': 'sql/delete_async/SqlDeleteAsyncResponse.ts#L22-L25', -'sql.get_async.Request': 'sql/get_async/SqlGetAsyncRequest.ts#L24-L73', +'sql.get_async.Request': 'sql/get_async/SqlGetAsyncRequest.ts#L24-L74', 'sql.get_async.Response': 'sql/get_async/SqlGetAsyncResponse.ts#L23-L60', -'sql.get_async_status.Request': 'sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L46', +'sql.get_async_status.Request': 'sql/get_async_status/SqlGetAsyncStatusRequest.ts#L23-L47', 'sql.get_async_status.Response': 'sql/get_async_status/SqlGetAsyncStatusResponse.ts#L23-L55', -'sql.query.Request': 'sql/query/QuerySqlRequest.ts#L28-L165', +'sql.query.Request': 'sql/query/QuerySqlRequest.ts#L28-L167', 'sql.query.Response': 'sql/query/QuerySqlResponse.ts#L23-L60', -'sql.query.SqlFormat': 'sql/query/QuerySqlRequest.ts#L167-L175', -'sql.translate.Request': 'sql/translate/TranslateSqlRequest.ts#L25-L66', +'sql.query.SqlFormat': 'sql/query/QuerySqlRequest.ts#L169-L177', +'sql.translate.Request': 'sql/translate/TranslateSqlRequest.ts#L26-L69', 'sql.translate.Response': 'sql/translate/TranslateSqlResponse.ts#L28-L39', 'ssl.certificates.CertificateInformation': 'ssl/certificates/types.ts#L22-L57', -'ssl.certificates.Request': 'ssl/certificates/GetCertificatesRequest.ts#L22-L55', +'ssl.certificates.Request': 'ssl/certificates/GetCertificatesRequest.ts#L23-L57', 'ssl.certificates.Response': 'ssl/certificates/GetCertificatesResponse.ts#L22-L25', -'streams.logs_disable.Request': 'streams/logs_disable/StreamsLogsDisableRequest.ts#L23-L55', +'streams.logs_disable.Request': 'streams/logs_disable/StreamsLogsDisableRequest.ts#L24-L57', 'streams.logs_disable.Response': 'streams/logs_disable/StreamsLogsDisableResponse.ts#L22-L25', -'streams.logs_enable.Request': 'streams/logs_enable/StreamsLogsEnableRequest.ts#L23-L59', +'streams.logs_enable.Request': 'streams/logs_enable/StreamsLogsEnableRequest.ts#L24-L61', 'streams.logs_enable.Response': 'streams/logs_enable/StreamsLogsEnableResponse.ts#L22-L25', 'streams.status.LogsStatus': 'streams/status/StreamsStatusResponse.ts#L26-L31', -'streams.status.Request': 'streams/status/StreamsStatusRequest.ts#L23-L47', +'streams.status.Request': 'streams/status/StreamsStatusRequest.ts#L24-L49', 'streams.status.Response': 'streams/status/StreamsStatusResponse.ts#L20-L24', 'synonyms._types.SynonymRule': 'synonyms/_types/SynonymRule.ts#L26-L37', 'synonyms._types.SynonymRuleRead': 'synonyms/_types/SynonymRule.ts#L40-L50', 'synonyms._types.SynonymsUpdateResult': 'synonyms/_types/SynonymsUpdateResult.ts#L23-L34', -'synonyms.delete_synonym.Request': 'synonyms/delete_synonym/SynonymsDeleteRequest.ts#L22-L60', +'synonyms.delete_synonym.Request': 'synonyms/delete_synonym/SynonymsDeleteRequest.ts#L22-L61', 'synonyms.delete_synonym.Response': 'synonyms/delete_synonym/SynonymsDeleteResponse.ts#L22-L25', -'synonyms.delete_synonym_rule.Request': 'synonyms/delete_synonym_rule/SynonymRuleDeleteRequest.ts#L22-L58', +'synonyms.delete_synonym_rule.Request': 'synonyms/delete_synonym_rule/SynonymRuleDeleteRequest.ts#L22-L60', 'synonyms.delete_synonym_rule.Response': 'synonyms/delete_synonym_rule/SynonymRuleDeleteResponse.ts#L22-L25', -'synonyms.get_synonym.Request': 'synonyms/get_synonym/SynonymsGetRequest.ts#L23-L57', +'synonyms.get_synonym.Request': 'synonyms/get_synonym/SynonymsGetRequest.ts#L23-L58', 'synonyms.get_synonym.Response': 'synonyms/get_synonym/SynonymsGetResponse.ts#L23-L34', -'synonyms.get_synonym_rule.Request': 'synonyms/get_synonym_rule/SynonymRuleGetRequest.ts#L22-L49', +'synonyms.get_synonym_rule.Request': 'synonyms/get_synonym_rule/SynonymRuleGetRequest.ts#L22-L51', 'synonyms.get_synonym_rule.Response': 'synonyms/get_synonym_rule/SynonymRuleGetResponse.ts#L22-L25', -'synonyms.get_synonyms_sets.Request': 'synonyms/get_synonyms_sets/SynonymsSetsGetRequest.ts#L22-L51', +'synonyms.get_synonyms_sets.Request': 'synonyms/get_synonyms_sets/SynonymsSetsGetRequest.ts#L23-L53', 'synonyms.get_synonyms_sets.Response': 'synonyms/get_synonyms_sets/SynonymsSetsGetResponse.ts#L23-L34', 'synonyms.get_synonyms_sets.SynonymsSetItem': 'synonyms/get_synonyms_sets/SynonymsSetsGetResponse.ts#L36-L45', -'synonyms.put_synonym.Request': 'synonyms/put_synonym/SynonymsPutRequest.ts#L23-L68', +'synonyms.put_synonym.Request': 'synonyms/put_synonym/SynonymsPutRequest.ts#L23-L70', 'synonyms.put_synonym.Response': 'synonyms/put_synonym/SynonymsPutResponse.ts#L23-L36', -'synonyms.put_synonym_rule.Request': 'synonyms/put_synonym_rule/SynonymRulePutRequest.ts#L23-L70', +'synonyms.put_synonym_rule.Request': 'synonyms/put_synonym_rule/SynonymRulePutRequest.ts#L23-L72', 'synonyms.put_synonym_rule.Response': 'synonyms/put_synonym_rule/SynonymRulePutResponse.ts#L22-L25', 'tasks._types.GroupBy': 'tasks/_types/GroupBy.ts#L20-L27', 'tasks._types.NodeTasks': 'tasks/_types/TaskListResponseBase.ts#L49-L57', @@ -3171,23 +3171,23 @@ 'tasks._types.TaskInfo': 'tasks/_types/TaskInfo.ts#L32-L58', 'tasks._types.TaskInfos': 'tasks/_types/TaskListResponseBase.ts#L40-L43', 'tasks._types.TaskListResponseBase': 'tasks/_types/TaskListResponseBase.ts#L26-L38', -'tasks.cancel.Request': 'tasks/cancel/CancelTasksRequest.ts#L23-L78', +'tasks.cancel.Request': 'tasks/cancel/CancelTasksRequest.ts#L23-L79', 'tasks.cancel.Response': 'tasks/cancel/CancelTasksResponse.ts#L22-L25', -'tasks.get.Request': 'tasks/get/GetTaskRequest.ts#L24-L65', +'tasks.get.Request': 'tasks/get/GetTaskRequest.ts#L24-L66', 'tasks.get.Response': 'tasks/get/GetTaskResponse.ts#L24-L31', -'tasks.list.Request': 'tasks/list/ListTasksRequest.ts#L25-L140', +'tasks.list.Request': 'tasks/list/ListTasksRequest.ts#L25-L141', 'tasks.list.Response': 'tasks/list/ListTasksResponse.ts#L22-L25', 'text_structure._types.EcsCompatibilityType': 'text_structure/_types/Structure.ts#L40-L43', 'text_structure._types.FieldStat': 'text_structure/_types/Structure.ts#L23-L33', 'text_structure._types.FormatType': 'text_structure/_types/Structure.ts#L45-L50', 'text_structure._types.TopHit': 'text_structure/_types/Structure.ts#L35-L38', -'text_structure.find_field_structure.Request': 'text_structure/find_field_structure/FindFieldStructureRequest.ts#L26-L185', +'text_structure.find_field_structure.Request': 'text_structure/find_field_structure/FindFieldStructureRequest.ts#L26-L186', 'text_structure.find_field_structure.Response': 'text_structure/find_field_structure/FindFieldStructureResponse.ts#L31-L49', -'text_structure.find_message_structure.Request': 'text_structure/find_message_structure/FindMessageStructureRequest.ts#L25-L175', +'text_structure.find_message_structure.Request': 'text_structure/find_message_structure/FindMessageStructureRequest.ts#L25-L178', 'text_structure.find_message_structure.Response': 'text_structure/find_message_structure/FindMessageStructureResponse.ts#L31-L49', 'text_structure.test_grok_pattern.MatchedField': 'text_structure/test_grok_pattern/types.ts#L23-L27', 'text_structure.test_grok_pattern.MatchedText': 'text_structure/test_grok_pattern/types.ts#L29-L32', -'text_structure.test_grok_pattern.Request': 'text_structure/test_grok_pattern/TestGrokPatternRequest.ts#L23-L60', +'text_structure.test_grok_pattern.Request': 'text_structure/test_grok_pattern/TestGrokPatternRequest.ts#L23-L62', 'text_structure.test_grok_pattern.Response': 'text_structure/test_grok_pattern/TestGrokPatternResponse.ts#L22-L26', 'transform._types.Destination': 'transform/_types/Transform.ts#L34-L45', 'transform._types.Latest': 'transform/_types/Transform.ts#L47-L52', @@ -3199,37 +3199,42 @@ 'transform._types.Source': 'transform/_types/Transform.ts#L156-L175', 'transform._types.SyncContainer': 'transform/_types/Transform.ts#L179-L185', 'transform._types.TimeSync': 'transform/_types/Transform.ts#L187-L199', -'transform.delete_transform.Request': 'transform/delete_transform/DeleteTransformRequest.ts#L24-L65', +'transform.delete_transform.Request': 'transform/delete_transform/DeleteTransformRequest.ts#L24-L66', 'transform.delete_transform.Response': 'transform/delete_transform/DeleteTransformResponse.ts#L22-L25', -'transform.get_transform.Request': 'transform/get_transform/GetTransformRequest.ts#L24-L85', +'transform.get_node_stats.Request': 'transform/get_node_stats/GetNodeStatsRequest.ts#L23-L40', +'transform.get_node_stats.Response': 'transform/get_node_stats/GetNodeStatsResponse.ts#L22-L25', +'transform.get_node_stats.TransformNodeFullStats': 'transform/get_node_stats/types.ts#L24-L31', +'transform.get_node_stats.TransformNodeStats': 'transform/get_node_stats/types.ts#L33-L35', +'transform.get_node_stats.TransformSchedulerStats': 'transform/get_node_stats/types.ts#L37-L40', +'transform.get_transform.Request': 'transform/get_transform/GetTransformRequest.ts#L24-L86', 'transform.get_transform.Response': 'transform/get_transform/GetTransformResponse.ts#L23-L25', 'transform.get_transform.TransformSummary': 'transform/get_transform/types.ts#L33-L62', 'transform.get_transform_stats.CheckpointStats': 'transform/get_transform_stats/types.ts#L93-L100', 'transform.get_transform_stats.Checkpointing': 'transform/get_transform_stats/types.ts#L102-L110', -'transform.get_transform_stats.Request': 'transform/get_transform_stats/GetTransformStatsRequest.ts#L25-L77', +'transform.get_transform_stats.Request': 'transform/get_transform_stats/GetTransformStatsRequest.ts#L25-L82', 'transform.get_transform_stats.Response': 'transform/get_transform_stats/GetTransformStatsResponse.ts#L23-L25', 'transform.get_transform_stats.TransformHealthIssue': 'transform/get_transform_stats/types.ts#L51-L63', 'transform.get_transform_stats.TransformIndexerStats': 'transform/get_transform_stats/types.ts#L73-L91', 'transform.get_transform_stats.TransformProgress': 'transform/get_transform_stats/types.ts#L65-L71', 'transform.get_transform_stats.TransformStats': 'transform/get_transform_stats/types.ts#L31-L42', 'transform.get_transform_stats.TransformStatsHealth': 'transform/get_transform_stats/types.ts#L44-L49', -'transform.preview_transform.Request': 'transform/preview_transform/PreviewTransformRequest.ts#L33-L120', +'transform.preview_transform.Request': 'transform/preview_transform/PreviewTransformRequest.ts#L33-L122', 'transform.preview_transform.Response': 'transform/preview_transform/PreviewTransformResponse.ts#L22-L27', -'transform.put_transform.Request': 'transform/put_transform/PutTransformRequest.ts#L33-L131', +'transform.put_transform.Request': 'transform/put_transform/PutTransformRequest.ts#L33-L134', 'transform.put_transform.Response': 'transform/put_transform/PutTransformResponse.ts#L22-L25', -'transform.reset_transform.Request': 'transform/reset_transform/ResetTransformRequest.ts#L24-L62', +'transform.reset_transform.Request': 'transform/reset_transform/ResetTransformRequest.ts#L24-L63', 'transform.reset_transform.Response': 'transform/reset_transform/ResetTransformResponse.ts#L22-L25', -'transform.schedule_now_transform.Request': 'transform/schedule_now_transform/ScheduleNowTransformRequest.ts#L23-L57', +'transform.schedule_now_transform.Request': 'transform/schedule_now_transform/ScheduleNowTransformRequest.ts#L23-L59', 'transform.schedule_now_transform.Response': 'transform/schedule_now_transform/ScheduleNowTransformResponse.ts#L21-L24', -'transform.set_upgrade_mode.Request': 'transform/set_upgrade_mode/TransformSetUpgradeModeRequest.ts#L23-L65', +'transform.set_upgrade_mode.Request': 'transform/set_upgrade_mode/TransformSetUpgradeModeRequest.ts#L24-L67', 'transform.set_upgrade_mode.Response': 'transform/set_upgrade_mode/TransformSetUpgradeModeResponse.ts#L22-L25', -'transform.start_transform.Request': 'transform/start_transform/StartTransformRequest.ts#L24-L72', +'transform.start_transform.Request': 'transform/start_transform/StartTransformRequest.ts#L24-L73', 'transform.start_transform.Response': 'transform/start_transform/StartTransformResponse.ts#L22-L25', -'transform.stop_transform.Request': 'transform/stop_transform/StopTransformRequest.ts#L24-L85', +'transform.stop_transform.Request': 'transform/stop_transform/StopTransformRequest.ts#L24-L86', 'transform.stop_transform.Response': 'transform/stop_transform/StopTransformResponse.ts#L22-L25', -'transform.update_transform.Request': 'transform/update_transform/UpdateTransformRequest.ts#L31-L114', +'transform.update_transform.Request': 'transform/update_transform/UpdateTransformRequest.ts#L31-L116', 'transform.update_transform.Response': 'transform/update_transform/UpdateTransformResponse.ts#L33-L51', -'transform.upgrade_transforms.Request': 'transform/upgrade_transforms/UpgradeTransformsRequest.ts#L23-L65', +'transform.upgrade_transforms.Request': 'transform/upgrade_transforms/UpgradeTransformsRequest.ts#L24-L68', 'transform.upgrade_transforms.Response': 'transform/upgrade_transforms/UpgradeTransformsResponse.ts#L25-L34', 'watcher._types.AcknowledgeState': 'watcher/_types/Action.ts#L109-L112', 'watcher._types.AcknowledgementOptions': 'watcher/_types/Action.ts#L103-L107', @@ -3323,46 +3328,46 @@ 'watcher._types.WatchStatus': 'watcher/_types/Watch.ts#L49-L56', 'watcher._types.WebhookAction': 'watcher/_types/Actions.ts#L293-L293', 'watcher._types.WebhookResult': 'watcher/_types/Actions.ts#L295-L298', -'watcher.ack_watch.Request': 'watcher/ack_watch/WatcherAckWatchRequest.ts#L23-L64', +'watcher.ack_watch.Request': 'watcher/ack_watch/WatcherAckWatchRequest.ts#L23-L65', 'watcher.ack_watch.Response': 'watcher/ack_watch/WatcherAckWatchResponse.ts#L22-L24', -'watcher.activate_watch.Request': 'watcher/activate_watch/WatcherActivateWatchRequest.ts#L23-L46', +'watcher.activate_watch.Request': 'watcher/activate_watch/WatcherActivateWatchRequest.ts#L23-L47', 'watcher.activate_watch.Response': 'watcher/activate_watch/WatcherActivateWatchResponse.ts#L22-L24', -'watcher.deactivate_watch.Request': 'watcher/deactivate_watch/DeactivateWatchRequest.ts#L23-L46', +'watcher.deactivate_watch.Request': 'watcher/deactivate_watch/DeactivateWatchRequest.ts#L23-L47', 'watcher.deactivate_watch.Response': 'watcher/deactivate_watch/DeactivateWatchResponse.ts#L22-L24', -'watcher.delete_watch.Request': 'watcher/delete_watch/DeleteWatchRequest.ts#L23-L51', +'watcher.delete_watch.Request': 'watcher/delete_watch/DeleteWatchRequest.ts#L23-L52', 'watcher.delete_watch.Response': 'watcher/delete_watch/DeleteWatchResponse.ts#L22-L24', -'watcher.execute_watch.Request': 'watcher/execute_watch/WatcherExecuteWatchRequest.ts#L28-L108', +'watcher.execute_watch.Request': 'watcher/execute_watch/WatcherExecuteWatchRequest.ts#L28-L110', 'watcher.execute_watch.Response': 'watcher/execute_watch/WatcherExecuteWatchResponse.ts#L23-L34', 'watcher.execute_watch.WatchRecord': 'watcher/execute_watch/types.ts#L27-L39', -'watcher.get_settings.Request': 'watcher/get_settings/WatcherGetSettingsRequest.ts#L23-L47', +'watcher.get_settings.Request': 'watcher/get_settings/WatcherGetSettingsRequest.ts#L24-L50', 'watcher.get_settings.Response': 'watcher/get_settings/WatcherGetSettingsResponse.ts#L22-L26', -'watcher.get_watch.Request': 'watcher/get_watch/GetWatchRequest.ts#L23-L44', +'watcher.get_watch.Request': 'watcher/get_watch/GetWatchRequest.ts#L23-L45', 'watcher.get_watch.Response': 'watcher/get_watch/GetWatchResponse.ts#L24-L34', -'watcher.put_watch.Request': 'watcher/put_watch/WatcherPutWatchRequest.ts#L31-L111', +'watcher.put_watch.Request': 'watcher/put_watch/WatcherPutWatchRequest.ts#L37-L124', 'watcher.put_watch.Response': 'watcher/put_watch/WatcherPutWatchResponse.ts#L23-L31', -'watcher.query_watches.Request': 'watcher/query_watches/WatcherQueryWatchesRequest.ts#L25-L71', +'watcher.query_watches.Request': 'watcher/query_watches/WatcherQueryWatchesRequest.ts#L26-L74', 'watcher.query_watches.Response': 'watcher/query_watches/WatcherQueryWatchesResponse.ts#L23-L34', -'watcher.start.Request': 'watcher/start/WatcherStartRequest.ts#L23-L46', +'watcher.start.Request': 'watcher/start/WatcherStartRequest.ts#L24-L48', 'watcher.start.Response': 'watcher/start/WatcherStartResponse.ts#L22-L25', -'watcher.stats.Request': 'watcher/stats/WatcherStatsRequest.ts#L23-L61', +'watcher.stats.Request': 'watcher/stats/WatcherStatsRequest.ts#L24-L63', 'watcher.stats.Response': 'watcher/stats/WatcherStatsResponse.ts#L24-L32', 'watcher.stats.WatchRecordQueuedStats': 'watcher/stats/types.ts#L71-L77', 'watcher.stats.WatchRecordStats': 'watcher/stats/types.ts#L79-L94', 'watcher.stats.WatcherMetric': 'watcher/stats/types.ts#L63-L69', 'watcher.stats.WatcherNodeStats': 'watcher/stats/types.ts#L33-L61', 'watcher.stats.WatcherState': 'watcher/stats/types.ts#L26-L31', -'watcher.stop.Request': 'watcher/stop/WatcherStopRequest.ts#L23-L48', +'watcher.stop.Request': 'watcher/stop/WatcherStopRequest.ts#L24-L50', 'watcher.stop.Response': 'watcher/stop/WatcherStopResponse.ts#L22-L25', -'watcher.update_settings.Request': 'watcher/update_settings/WatcherUpdateSettingsRequest.ts#L24-L63', +'watcher.update_settings.Request': 'watcher/update_settings/WatcherUpdateSettingsRequest.ts#L25-L66', 'watcher.update_settings.Response': 'watcher/update_settings/WatcherUpdateSettingsResponse.ts#L20-L24', 'xpack.info.BuildInformation': 'xpack/info/types.ts#L24-L27', 'xpack.info.Feature': 'xpack/info/types.ts#L84-L89', 'xpack.info.Features': 'xpack/info/types.ts#L42-L82', 'xpack.info.MinimalLicenseInformation': 'xpack/info/types.ts#L34-L40', 'xpack.info.NativeCodeInformation': 'xpack/info/types.ts#L29-L32', -'xpack.info.Request': 'xpack/info/XPackInfoRequest.ts#L22-L60', +'xpack.info.Request': 'xpack/info/XPackInfoRequest.ts#L23-L63', 'xpack.info.Response': 'xpack/info/XPackInfoResponse.ts#L22-L29', -'xpack.info.XPackCategory': 'xpack/info/XPackInfoRequest.ts#L62-L66', +'xpack.info.XPackCategory': 'xpack/info/XPackInfoRequest.ts#L65-L69', 'xpack.usage.Analytics': 'xpack/usage/types.ts#L373-L375', 'xpack.usage.AnalyticsStatistics': 'xpack/usage/types.ts#L58-L68', 'xpack.usage.Archive': 'xpack/usage/types.ts#L45-L47', @@ -3408,7 +3413,7 @@ 'xpack.usage.Query': 'xpack/usage/types.ts#L269-L274', 'xpack.usage.Realm': 'xpack/usage/types.ts#L456-L465', 'xpack.usage.RealmCache': 'xpack/usage/types.ts#L276-L278', -'xpack.usage.Request': 'xpack/usage/XPackUsageRequest.ts#L23-L50', +'xpack.usage.Request': 'xpack/usage/XPackUsageRequest.ts#L24-L52', 'xpack.usage.Response': 'xpack/usage/XPackUsageResponse.ts#L42-L77', 'xpack.usage.RoleMapping': 'xpack/usage/types.ts#L280-L283', 'xpack.usage.RuntimeFieldTypes': 'xpack/usage/types.ts#L285-L287', @@ -3435,10 +3440,10 @@ if (hash.length > 1) { hash = hash.substring(1); } - window.location = "https://github.com/elastic/elasticsearch-specification/tree/545f3a71916a8ed22fa3962e36dc771677c0da35/specification/" + (paths[hash] || ""); + window.location = "https://github.com/elastic/elasticsearch-specification/tree/1819efc45f2245f1f2f74a2997f0eb6d62433300/specification/" + (paths[hash] || ""); - Please see the Elasticsearch API specification. + Please see the Elasticsearch API specification. diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DataStreamLifecycle.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DataStreamLifecycle.java index db24b9183a..ddce28b528 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DataStreamLifecycle.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DataStreamLifecycle.java @@ -27,10 +27,12 @@ import co.elastic.clients.json.JsonpUtils; import co.elastic.clients.json.ObjectBuilderDeserializer; import co.elastic.clients.json.ObjectDeserializer; +import co.elastic.clients.util.ApiTypeHelper; import co.elastic.clients.util.ObjectBuilder; import co.elastic.clients.util.WithJsonObjectBuilderBase; import jakarta.json.stream.JsonGenerator; import java.lang.Boolean; +import java.util.List; import java.util.Objects; import java.util.function.Function; import javax.annotation.Nullable; @@ -65,8 +67,7 @@ public class DataStreamLifecycle implements JsonpSerializable { @Nullable private final Time dataRetention; - @Nullable - private final DataStreamLifecycleDownsampling downsampling; + private final List downsampling; @Nullable private final Boolean enabled; @@ -76,7 +77,7 @@ public class DataStreamLifecycle implements JsonpSerializable { protected DataStreamLifecycle(AbstractBuilder builder) { this.dataRetention = builder.dataRetention; - this.downsampling = builder.downsampling; + this.downsampling = ApiTypeHelper.unmodifiable(builder.downsampling); this.enabled = builder.enabled; } @@ -99,13 +100,12 @@ public final Time dataRetention() { } /** - * The downsampling configuration to execute for the managed backing index after - * rollover. + * The list of downsampling rounds to execute as part of this downsampling + * configuration *

* API name: {@code downsampling} */ - @Nullable - public final DataStreamLifecycleDownsampling downsampling() { + public final List downsampling() { return this.downsampling; } @@ -138,9 +138,14 @@ protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) { this.dataRetention.serialize(generator, mapper); } - if (this.downsampling != null) { + if (ApiTypeHelper.isDefined(this.downsampling)) { generator.writeKey("downsampling"); - this.downsampling.serialize(generator, mapper); + generator.writeStartArray(); + for (DownsamplingRound item0 : this.downsampling) { + item0.serialize(generator, mapper); + + } + generator.writeEnd(); } if (this.enabled != null) { @@ -190,7 +195,7 @@ public abstract static class AbstractBuilder downsampling; @Nullable private Boolean enabled; @@ -221,25 +226,41 @@ public final BuilderT dataRetention(Function> } /** - * The downsampling configuration to execute for the managed backing index after - * rollover. + * The list of downsampling rounds to execute as part of this downsampling + * configuration *

* API name: {@code downsampling} + *

+ * Adds all elements of list to downsampling. */ - public final BuilderT downsampling(@Nullable DataStreamLifecycleDownsampling value) { - this.downsampling = value; + public final BuilderT downsampling(List list) { + this.downsampling = _listAddAll(this.downsampling, list); return self(); } /** - * The downsampling configuration to execute for the managed backing index after - * rollover. + * The list of downsampling rounds to execute as part of this downsampling + * configuration *

* API name: {@code downsampling} + *

+ * Adds one or more values to downsampling. + */ + public final BuilderT downsampling(DownsamplingRound value, DownsamplingRound... values) { + this.downsampling = _listAdd(this.downsampling, value, values); + return self(); + } + + /** + * The list of downsampling rounds to execute as part of this downsampling + * configuration + *

+ * API name: {@code downsampling} + *

+ * Adds a value to downsampling using a builder lambda. */ - public final BuilderT downsampling( - Function> fn) { - return this.downsampling(fn.apply(new DataStreamLifecycleDownsampling.Builder()).build()); + public final BuilderT downsampling(Function> fn) { + return downsampling(fn.apply(new DownsamplingRound.Builder()).build()); } /** @@ -271,7 +292,8 @@ protected static > void setupDataStre ObjectDeserializer op) { op.add(AbstractBuilder::dataRetention, Time._DESERIALIZER, "data_retention"); - op.add(AbstractBuilder::downsampling, DataStreamLifecycleDownsampling._DESERIALIZER, "downsampling"); + op.add(AbstractBuilder::downsampling, JsonpDeserializer.arrayDeserializer(DownsamplingRound._DESERIALIZER), + "downsampling"); op.add(AbstractBuilder::enabled, JsonpDeserializer.booleanDeserializer(), "enabled"); } diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataLifecycleRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataLifecycleRequest.java index e50b709b42..61091a4aca 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataLifecycleRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataLifecycleRequest.java @@ -106,7 +106,7 @@ public final List expandWildcards() { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -117,7 +117,7 @@ public final Time masterTimeout() { /** * Required - A comma-separated list of data streams of which the data stream - * lifecycle will be deleted; use * to get all data streams + * lifecycle will be deleted. Use * to get all data streams *

* API name: {@code name} */ @@ -126,7 +126,7 @@ public final List name() { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -182,7 +182,7 @@ public final Builder expandWildcards(ExpandWildcard value, ExpandWildcard... val } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -192,7 +192,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -202,7 +202,7 @@ public final Builder masterTimeout(Function> f /** * Required - A comma-separated list of data streams of which the data stream - * lifecycle will be deleted; use * to get all data streams + * lifecycle will be deleted. Use * to get all data streams *

* API name: {@code name} *

@@ -215,7 +215,7 @@ public final Builder name(List list) { /** * Required - A comma-separated list of data streams of which the data stream - * lifecycle will be deleted; use * to get all data streams + * lifecycle will be deleted. Use * to get all data streams *

* API name: {@code name} *

@@ -227,7 +227,7 @@ public final Builder name(String value, String... values) { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -237,7 +237,7 @@ public final Builder timeout(@Nullable Time value) { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataStreamOptionsRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataStreamOptionsRequest.java index 0d2b337c56..6413c315a5 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataStreamOptionsRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/DeleteDataStreamOptionsRequest.java @@ -97,7 +97,6 @@ public static DeleteDataStreamOptionsRequest of( /** * Whether wildcard expressions should get expanded to open or closed indices - * (default: open) *

* API name: {@code expand_wildcards} */ @@ -106,7 +105,7 @@ public final List expandWildcards() { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -117,7 +116,7 @@ public final Time masterTimeout() { /** * Required - A comma-separated list of data streams of which the data stream - * options will be deleted; use * to get all data streams + * options will be deleted. Use * to get all data streams *

* API name: {@code name} */ @@ -126,7 +125,7 @@ public final List name() { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -157,7 +156,6 @@ public static class Builder extends RequestBase.AbstractBuilder /** * Whether wildcard expressions should get expanded to open or closed indices - * (default: open) *

* API name: {@code expand_wildcards} *

@@ -170,7 +168,6 @@ public final Builder expandWildcards(List list) { /** * Whether wildcard expressions should get expanded to open or closed indices - * (default: open) *

* API name: {@code expand_wildcards} *

@@ -182,7 +179,7 @@ public final Builder expandWildcards(ExpandWildcard value, ExpandWildcard... val } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -192,7 +189,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -202,7 +199,7 @@ public final Builder masterTimeout(Function> f /** * Required - A comma-separated list of data streams of which the data stream - * options will be deleted; use * to get all data streams + * options will be deleted. Use * to get all data streams *

* API name: {@code name} *

@@ -215,7 +212,7 @@ public final Builder name(List list) { /** * Required - A comma-separated list of data streams of which the data stream - * options will be deleted; use * to get all data streams + * options will be deleted. Use * to get all data streams *

* API name: {@code name} *

@@ -227,7 +224,7 @@ public final Builder name(String value, String... values) { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ @@ -237,7 +234,7 @@ public final Builder timeout(@Nullable Time value) { } /** - * Explicit timestamp for the document + * The period to wait for a response. *

* API name: {@code timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ExplainDataLifecycleRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ExplainDataLifecycleRequest.java index d067e3f8a8..bae1e58953 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ExplainDataLifecycleRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ExplainDataLifecycleRequest.java @@ -95,7 +95,7 @@ public static ExplainDataLifecycleRequest of(Function * API name: {@code include_defaults} @@ -115,7 +115,7 @@ public final List index() { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -142,7 +142,7 @@ public static class Builder extends RequestBase.AbstractBuilder private Time masterTimeout; /** - * indicates if the API should return the default values the system uses for the + * Indicates if the API should return the default values the system uses for the * index's lifecycle *

* API name: {@code include_defaults} @@ -177,7 +177,7 @@ public final Builder index(String value, String... values) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ @@ -187,7 +187,7 @@ public final Builder masterTimeout(@Nullable Time value) { } /** - * Specify timeout for connection to master + * The period to wait for a connection to the master node. *

* API name: {@code master_timeout} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ForcemergeRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ForcemergeRequest.java index d43009173c..0b7be581ce 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ForcemergeRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/ForcemergeRequest.java @@ -206,7 +206,6 @@ public final List expandWildcards() { /** * Specify whether the index should be flushed after performing the operation - * (default: true) *

* API name: {@code flush} */ @@ -237,7 +236,7 @@ public final List index() { } /** - * The number of segments the index should be merged into (default: dynamic) + * The number of segments the index should be merged into (defayult: dynamic) *

* API name: {@code max_num_segments} */ @@ -257,7 +256,7 @@ public final Boolean onlyExpungeDeletes() { } /** - * Should the request wait until the force merge is completed. + * Should the request wait until the force merge is completed *

* API name: {@code wait_for_completion} */ @@ -339,7 +338,6 @@ public final Builder expandWildcards(ExpandWildcard value, ExpandWildcard... val /** * Specify whether the index should be flushed after performing the operation - * (default: true) *

* API name: {@code flush} */ @@ -386,7 +384,7 @@ public final Builder index(String value, String... values) { } /** - * The number of segments the index should be merged into (default: dynamic) + * The number of segments the index should be merged into (defayult: dynamic) *

* API name: {@code max_num_segments} */ @@ -406,7 +404,7 @@ public final Builder onlyExpungeDeletes(@Nullable Boolean value) { } /** - * Should the request wait until the force merge is completed. + * Should the request wait until the force merge is completed *

* API name: {@code wait_for_completion} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndicesStatsRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndicesStatsRequest.java index b202f4d1f7..a0829ff2e9 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndicesStatsRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/IndicesStatsRequest.java @@ -236,7 +236,7 @@ public final Level level() { } /** - * Limit the information returned the specific metrics. + * Limit the information returned the specific metrics *

* API name: {@code metric} */ @@ -488,7 +488,7 @@ public final Builder level(@Nullable Level value) { } /** - * Limit the information returned the specific metrics. + * Limit the information returned the specific metrics *

* API name: {@code metric} *

@@ -500,7 +500,7 @@ public final Builder metric(List list) { } /** - * Limit the information returned the specific metrics. + * Limit the information returned the specific metrics *

* API name: {@code metric} *

diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PromoteDataStreamRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PromoteDataStreamRequest.java index cff1777b09..7b5acd661a 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PromoteDataStreamRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PromoteDataStreamRequest.java @@ -111,7 +111,7 @@ public final Time masterTimeout() { } /** - * Required - The name of the data stream + * Required - The name of the data stream to promote *

* API name: {@code name} */ @@ -155,7 +155,7 @@ public final Builder masterTimeout(Function> f } /** - * Required - The name of the data stream + * Required - The name of the data stream to promote *

* API name: {@code name} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutIndexTemplateRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutIndexTemplateRequest.java index 5c9c85908a..29763aa7a2 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutIndexTemplateRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutIndexTemplateRequest.java @@ -203,7 +203,7 @@ public final Boolean allowAutoCreate() { } /** - * User defined reason for creating/updating the index template + * User defined reason for creating or updating the index template *

* API name: {@code cause} */ @@ -516,7 +516,7 @@ public final Builder allowAutoCreate(@Nullable Boolean value) { } /** - * User defined reason for creating/updating the index template + * User defined reason for creating or updating the index template *

* API name: {@code cause} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutMappingRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutMappingRequest.java index 4dc6c87a60..99b09c0c87 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutMappingRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutMappingRequest.java @@ -290,7 +290,7 @@ public final Boolean ignoreUnavailable() { /** * Required - A comma-separated list of index names the mapping should be added - * to (supports wildcards); use _all or omit to add the mapping on + * to (supports wildcards). Use _all or omit to add the mapping on * all indices. *

* API name: {@code index} @@ -742,7 +742,7 @@ public final Builder ignoreUnavailable(@Nullable Boolean value) { /** * Required - A comma-separated list of index names the mapping should be added - * to (supports wildcards); use _all or omit to add the mapping on + * to (supports wildcards). Use _all or omit to add the mapping on * all indices. *

* API name: {@code index} @@ -756,7 +756,7 @@ public final Builder index(List list) { /** * Required - A comma-separated list of index names the mapping should be added - * to (supports wildcards); use _all or omit to add the mapping on + * to (supports wildcards). Use _all or omit to add the mapping on * all indices. *

* API name: {@code index} diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutTemplateRequest.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutTemplateRequest.java index e73d128bb4..e8253e3464 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutTemplateRequest.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/indices/PutTemplateRequest.java @@ -160,7 +160,7 @@ public final Map aliases() { } /** - * User defined reason for creating/updating the index template + * User defined reason for creating or updating the index template *

* API name: {@code cause} */ @@ -384,7 +384,7 @@ public final Builder aliases(String key, Function * API name: {@code cause} */ diff --git a/java-client/src/main/java/co/elastic/clients/elasticsearch/inference/AzureAiStudioServiceSettings.java b/java-client/src/main/java/co/elastic/clients/elasticsearch/inference/AzureAiStudioServiceSettings.java index be37880d95..78c9cf50e4 100644 --- a/java-client/src/main/java/co/elastic/clients/elasticsearch/inference/AzureAiStudioServiceSettings.java +++ b/java-client/src/main/java/co/elastic/clients/elasticsearch/inference/AzureAiStudioServiceSettings.java @@ -132,8 +132,8 @@ public final String target() { * Required - The model provider for your deployment. Note that some providers * may support only certain task types. Supported providers include: *