elasticsearch 8.19.2__tar.gz → 8.19.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/PKG-INFO +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/__init__.py +39 -18
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/async_search.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/autoscaling.py +8 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/cat.py +40 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/ccr.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/cluster.py +10 -9
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/connector.py +34 -33
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/dangling_indices.py +6 -10
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/eql.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/esql.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/features.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/fleet.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/indices.py +235 -25
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/ingest.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/license.py +3 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/ml.py +61 -21
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/monitoring.py +2 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/nodes.py +7 -7
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/rollup.py +9 -9
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/search_application.py +11 -11
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/searchable_snapshots.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/security.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/shutdown.py +7 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/simulate.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/slm.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/snapshot.py +3 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/streams.py +6 -6
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/tasks.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/text_structure.py +5 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/transform.py +37 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/utils.py +4 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/watcher.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/xpack.py +2 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/__init__.py +41 -18
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/async_search.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/autoscaling.py +8 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/cat.py +40 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/ccr.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/cluster.py +10 -9
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/connector.py +34 -33
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/dangling_indices.py +6 -10
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/eql.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/esql.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/features.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/fleet.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/indices.py +235 -25
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/ingest.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/license.py +3 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/ml.py +61 -21
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/monitoring.py +2 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/nodes.py +7 -7
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/rollup.py +9 -9
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/search_application.py +11 -11
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/searchable_snapshots.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/security.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/shutdown.py +7 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/simulate.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/slm.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/snapshot.py +3 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/streams.py +6 -6
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/tasks.py +4 -4
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/text_structure.py +5 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/transform.py +37 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/utils.py +16 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/watcher.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/xpack.py +2 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_version.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/document.py +4 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/index.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/search.py +2 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/document.py +4 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/index.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/search.py +2 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/aggs.py +7 -7
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/async_connections.py +1 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/connections.py +1 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/document_base.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/query.py +23 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/serializer.py +1 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/types.py +2 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/utils.py +1 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/esql/esql.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/esql/functions.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/__init__.py +7 -7
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_async/_utils.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_async/embedding_service.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_async/strategies.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_async/vectorstore.py +5 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_sync/_utils.py +1 -1
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_sync/embedding_service.py +2 -2
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_sync/strategies.py +3 -3
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_sync/vectorstore.py +5 -5
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/.gitignore +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/CHANGELOG.md +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/CONTRIBUTING.md +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/LICENSE +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/NOTICE +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/README.md +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/Makefile +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/_static/css/custom.css +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/async-search.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/autoscaling.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/cat.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/ccr.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/cluster.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/connector.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/dangling-indices.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/elasticsearch.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/enrich-policies.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/eql.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/esql.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/fleet.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/graph-explore.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/index-lifecycle-management.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/indices.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/inference.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/ingest-pipelines.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/license.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/logstash.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/migration.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/ml.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/monitoring.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/nodes.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/query-rules.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/rollup-indices.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/search-application.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/searchable-snapshots.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/security.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/shutdown.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/simulate.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/snapshot-lifecycle-management.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/snapshots.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/snapshottable-features.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/sql.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/streams.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/synonyms.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/tasks.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/text-structure.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/tls-ssl.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/transforms.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/watcher.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api/x-pack.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/api.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/async.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/conf.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/esql.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/exceptions.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/helpers.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/index.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/interactive.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/docs/sphinx/quickstart.rst +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/enrich.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/graph.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/ilm.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/inference.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/logstash.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/migration.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/query_rules.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/sql.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/ssl.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/client/synonyms.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_async/helpers.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_otel.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/enrich.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/graph.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/ilm.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/inference.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/logstash.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/migration.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/query_rules.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/sql.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/ssl.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_sync/client/synonyms.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/_utils.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/client.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/compat.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/faceted_search.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/mapping.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_async/update_by_query.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/faceted_search.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/mapping.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/_sync/update_by_query.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/analysis.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/document.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/exceptions.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/faceted_search.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/faceted_search_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/field.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/function.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/index.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/index_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/mapping.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/mapping_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/response/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/response/aggs.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/response/hit.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/search.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/search_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/update_by_query.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/update_by_query_base.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/dsl/wrappers.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/esql/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/exceptions.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/actions.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/errors.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_async/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_sync/__init__.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/helpers/vectorstore/_utils.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/py.typed +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/serializer.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/elasticsearch/transport.py +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/pyproject.toml +0 -0
- {elasticsearch-8.19.2 → elasticsearch-8.19.3}/setup.cfg +0 -0
|
@@ -85,9 +85,9 @@ from .utils import (
|
|
|
85
85
|
CLIENT_META_SERVICE,
|
|
86
86
|
SKIP_IN_PATH,
|
|
87
87
|
Stability,
|
|
88
|
+
_availability_warning,
|
|
88
89
|
_quote,
|
|
89
90
|
_rewrite_parameters,
|
|
90
|
-
_stability_warning,
|
|
91
91
|
client_node_configs,
|
|
92
92
|
is_requests_http_auth,
|
|
93
93
|
is_requests_node_class,
|
|
@@ -594,6 +594,7 @@ class AsyncElasticsearch(BaseClient):
|
|
|
594
594
|
"""
|
|
595
595
|
__path = "/"
|
|
596
596
|
__query: t.Dict[str, t.Any] = {}
|
|
597
|
+
__path_parts: t.Dict[str, str] = {}
|
|
597
598
|
if error_trace is not None:
|
|
598
599
|
__query["error_trace"] = error_trace
|
|
599
600
|
if filter_path is not None:
|
|
@@ -605,7 +606,12 @@ class AsyncElasticsearch(BaseClient):
|
|
|
605
606
|
__headers = {"accept": "application/json"}
|
|
606
607
|
try:
|
|
607
608
|
await self.perform_request(
|
|
608
|
-
"HEAD",
|
|
609
|
+
"HEAD",
|
|
610
|
+
__path,
|
|
611
|
+
params=__query,
|
|
612
|
+
headers=__headers,
|
|
613
|
+
endpoint_id="ping",
|
|
614
|
+
path_parts=__path_parts,
|
|
609
615
|
)
|
|
610
616
|
return True
|
|
611
617
|
except (ApiError, TransportError):
|
|
@@ -700,6 +706,7 @@ class AsyncElasticsearch(BaseClient):
|
|
|
700
706
|
<li>Perl: Check out <code>Search::Elasticsearch::Client::5_0::Bulk</code> and <code>Search::Elasticsearch::Client::5_0::Scroll</code></li>
|
|
701
707
|
<li>Python: Check out <code>elasticsearch.helpers.*</code></li>
|
|
702
708
|
<li>JavaScript: Check out <code>client.helpers.*</code></li>
|
|
709
|
+
<li>Java: Check out <code>co.elastic.clients.elasticsearch._helpers.bulk.BulkIngester</code></li>
|
|
703
710
|
<li>.NET: Check out <code>BulkAllObservable</code></li>
|
|
704
711
|
<li>PHP: Check out bulk indexing.</li>
|
|
705
712
|
<li>Ruby: Check out <code>Elasticsearch::Helpers::BulkHelper</code></li>
|
|
@@ -1723,11 +1730,11 @@ class AsyncElasticsearch(BaseClient):
|
|
|
1723
1730
|
self,
|
|
1724
1731
|
*,
|
|
1725
1732
|
task_id: t.Union[int, str],
|
|
1733
|
+
requests_per_second: float,
|
|
1726
1734
|
error_trace: t.Optional[bool] = None,
|
|
1727
1735
|
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
1728
1736
|
human: t.Optional[bool] = None,
|
|
1729
1737
|
pretty: t.Optional[bool] = None,
|
|
1730
|
-
requests_per_second: t.Optional[float] = None,
|
|
1731
1738
|
) -> ObjectApiResponse[t.Any]:
|
|
1732
1739
|
"""
|
|
1733
1740
|
.. raw:: html
|
|
@@ -1745,9 +1752,13 @@ class AsyncElasticsearch(BaseClient):
|
|
|
1745
1752
|
"""
|
|
1746
1753
|
if task_id in SKIP_IN_PATH:
|
|
1747
1754
|
raise ValueError("Empty value passed for parameter 'task_id'")
|
|
1755
|
+
if requests_per_second is None:
|
|
1756
|
+
raise ValueError("Empty value passed for parameter 'requests_per_second'")
|
|
1748
1757
|
__path_parts: t.Dict[str, str] = {"task_id": _quote(task_id)}
|
|
1749
1758
|
__path = f'/_delete_by_query/{__path_parts["task_id"]}/_rethrottle'
|
|
1750
1759
|
__query: t.Dict[str, t.Any] = {}
|
|
1760
|
+
if requests_per_second is not None:
|
|
1761
|
+
__query["requests_per_second"] = requests_per_second
|
|
1751
1762
|
if error_trace is not None:
|
|
1752
1763
|
__query["error_trace"] = error_trace
|
|
1753
1764
|
if filter_path is not None:
|
|
@@ -1756,8 +1767,6 @@ class AsyncElasticsearch(BaseClient):
|
|
|
1756
1767
|
__query["human"] = human
|
|
1757
1768
|
if pretty is not None:
|
|
1758
1769
|
__query["pretty"] = pretty
|
|
1759
|
-
if requests_per_second is not None:
|
|
1760
|
-
__query["requests_per_second"] = requests_per_second
|
|
1761
1770
|
__headers = {"accept": "application/json"}
|
|
1762
1771
|
return await self.perform_request( # type: ignore[return-value]
|
|
1763
1772
|
"POST",
|
|
@@ -3088,7 +3097,7 @@ class AsyncElasticsearch(BaseClient):
|
|
|
3088
3097
|
),
|
|
3089
3098
|
parameter_aliases={"_source": "source"},
|
|
3090
3099
|
)
|
|
3091
|
-
@
|
|
3100
|
+
@_availability_warning(Stability.EXPERIMENTAL)
|
|
3092
3101
|
async def knn_search(
|
|
3093
3102
|
self,
|
|
3094
3103
|
*,
|
|
@@ -4287,11 +4296,11 @@ class AsyncElasticsearch(BaseClient):
|
|
|
4287
4296
|
self,
|
|
4288
4297
|
*,
|
|
4289
4298
|
task_id: str,
|
|
4299
|
+
requests_per_second: float,
|
|
4290
4300
|
error_trace: t.Optional[bool] = None,
|
|
4291
4301
|
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
4292
4302
|
human: t.Optional[bool] = None,
|
|
4293
4303
|
pretty: t.Optional[bool] = None,
|
|
4294
|
-
requests_per_second: t.Optional[float] = None,
|
|
4295
4304
|
) -> ObjectApiResponse[t.Any]:
|
|
4296
4305
|
"""
|
|
4297
4306
|
.. raw:: html
|
|
@@ -4315,9 +4324,13 @@ class AsyncElasticsearch(BaseClient):
|
|
|
4315
4324
|
"""
|
|
4316
4325
|
if task_id in SKIP_IN_PATH:
|
|
4317
4326
|
raise ValueError("Empty value passed for parameter 'task_id'")
|
|
4327
|
+
if requests_per_second is None:
|
|
4328
|
+
raise ValueError("Empty value passed for parameter 'requests_per_second'")
|
|
4318
4329
|
__path_parts: t.Dict[str, str] = {"task_id": _quote(task_id)}
|
|
4319
4330
|
__path = f'/_reindex/{__path_parts["task_id"]}/_rethrottle'
|
|
4320
4331
|
__query: t.Dict[str, t.Any] = {}
|
|
4332
|
+
if requests_per_second is not None:
|
|
4333
|
+
__query["requests_per_second"] = requests_per_second
|
|
4321
4334
|
if error_trace is not None:
|
|
4322
4335
|
__query["error_trace"] = error_trace
|
|
4323
4336
|
if filter_path is not None:
|
|
@@ -4326,8 +4339,6 @@ class AsyncElasticsearch(BaseClient):
|
|
|
4326
4339
|
__query["human"] = human
|
|
4327
4340
|
if pretty is not None:
|
|
4328
4341
|
__query["pretty"] = pretty
|
|
4329
|
-
if requests_per_second is not None:
|
|
4330
|
-
__query["requests_per_second"] = requests_per_second
|
|
4331
4342
|
__headers = {"accept": "application/json"}
|
|
4332
4343
|
return await self.perform_request( # type: ignore[return-value]
|
|
4333
4344
|
"POST",
|
|
@@ -4411,7 +4422,7 @@ class AsyncElasticsearch(BaseClient):
|
|
|
4411
4422
|
@_rewrite_parameters(
|
|
4412
4423
|
body_fields=("context", "context_setup", "script"),
|
|
4413
4424
|
)
|
|
4414
|
-
@
|
|
4425
|
+
@_availability_warning(Stability.EXPERIMENTAL)
|
|
4415
4426
|
async def scripts_painless_execute(
|
|
4416
4427
|
self,
|
|
4417
4428
|
*,
|
|
@@ -5480,11 +5491,19 @@ class AsyncElasticsearch(BaseClient):
|
|
|
5480
5491
|
|
|
5481
5492
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/search-vector-tile-api.html>`_
|
|
5482
5493
|
|
|
5483
|
-
:param index:
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
:param
|
|
5494
|
+
:param index: A list of indices, data streams, or aliases to search. It supports
|
|
5495
|
+
wildcards (`*`). To search all data streams and indices, omit this parameter
|
|
5496
|
+
or use `*` or `_all`. To search a remote cluster, use the `<cluster>:<target>`
|
|
5497
|
+
syntax.
|
|
5498
|
+
:param field: A field that contains the geospatial data to return. It must be
|
|
5499
|
+
a `geo_point` or `geo_shape` field. The field must have doc values enabled.
|
|
5500
|
+
It cannot be a nested field. NOTE: Vector tiles do not natively support geometry
|
|
5501
|
+
collections. For `geometrycollection` values in a `geo_shape` field, the
|
|
5502
|
+
API returns a hits layer feature for each element of the collection. This
|
|
5503
|
+
behavior may change in a future release.
|
|
5504
|
+
:param zoom: The zoom level of the vector tile to search. It accepts `0` to `29`.
|
|
5505
|
+
:param x: The X coordinate for the vector tile to search.
|
|
5506
|
+
:param y: The Y coordinate for the vector tile to search.
|
|
5488
5507
|
:param aggs: Sub-aggregations for the geotile_grid. It supports the following
|
|
5489
5508
|
aggregation types: - `avg` - `boxplot` - `cardinality` - `extended stats`
|
|
5490
5509
|
- `max` - `median absolute deviation` - `min` - `percentile` - `percentile-rank`
|
|
@@ -6664,11 +6683,11 @@ class AsyncElasticsearch(BaseClient):
|
|
|
6664
6683
|
self,
|
|
6665
6684
|
*,
|
|
6666
6685
|
task_id: str,
|
|
6686
|
+
requests_per_second: float,
|
|
6667
6687
|
error_trace: t.Optional[bool] = None,
|
|
6668
6688
|
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
6669
6689
|
human: t.Optional[bool] = None,
|
|
6670
6690
|
pretty: t.Optional[bool] = None,
|
|
6671
|
-
requests_per_second: t.Optional[float] = None,
|
|
6672
6691
|
) -> ObjectApiResponse[t.Any]:
|
|
6673
6692
|
"""
|
|
6674
6693
|
.. raw:: html
|
|
@@ -6686,9 +6705,13 @@ class AsyncElasticsearch(BaseClient):
|
|
|
6686
6705
|
"""
|
|
6687
6706
|
if task_id in SKIP_IN_PATH:
|
|
6688
6707
|
raise ValueError("Empty value passed for parameter 'task_id'")
|
|
6708
|
+
if requests_per_second is None:
|
|
6709
|
+
raise ValueError("Empty value passed for parameter 'requests_per_second'")
|
|
6689
6710
|
__path_parts: t.Dict[str, str] = {"task_id": _quote(task_id)}
|
|
6690
6711
|
__path = f'/_update_by_query/{__path_parts["task_id"]}/_rethrottle'
|
|
6691
6712
|
__query: t.Dict[str, t.Any] = {}
|
|
6713
|
+
if requests_per_second is not None:
|
|
6714
|
+
__query["requests_per_second"] = requests_per_second
|
|
6692
6715
|
if error_trace is not None:
|
|
6693
6716
|
__query["error_trace"] = error_trace
|
|
6694
6717
|
if filter_path is not None:
|
|
@@ -6697,8 +6720,6 @@ class AsyncElasticsearch(BaseClient):
|
|
|
6697
6720
|
__query["human"] = human
|
|
6698
6721
|
if pretty is not None:
|
|
6699
6722
|
__query["pretty"] = pretty
|
|
6700
|
-
if requests_per_second is not None:
|
|
6701
|
-
__query["requests_per_second"] = requests_per_second
|
|
6702
6723
|
__headers = {"accept": "application/json"}
|
|
6703
6724
|
return await self.perform_request( # type: ignore[return-value]
|
|
6704
6725
|
"POST",
|
|
@@ -357,7 +357,7 @@ class AsyncSearchClient(NamespacedClient):
|
|
|
357
357
|
:param allow_partial_search_results: Indicate if an error should be returned
|
|
358
358
|
if there is a partial search failure or timeout
|
|
359
359
|
:param analyze_wildcard: Specify whether wildcard and prefix queries should be
|
|
360
|
-
analyzed
|
|
360
|
+
analyzed
|
|
361
361
|
:param analyzer: The analyzer to use for the query string
|
|
362
362
|
:param batched_reduce_size: Affects how often partial results become available,
|
|
363
363
|
which happens whenever shard results are reduced. A partial reduction is
|
|
@@ -373,7 +373,7 @@ class AsyncSearchClient(NamespacedClient):
|
|
|
373
373
|
values for field names matching these patterns in the hits.fields property
|
|
374
374
|
of the response.
|
|
375
375
|
:param expand_wildcards: Whether to expand wildcard expression to concrete indices
|
|
376
|
-
that are open, closed or both
|
|
376
|
+
that are open, closed or both
|
|
377
377
|
:param explain: If true, returns detailed information about score computation
|
|
378
378
|
as part of a hit.
|
|
379
379
|
:param ext: Configuration of search extensions defined by Elasticsearch plugins.
|
|
@@ -406,7 +406,7 @@ class AsyncSearchClient(NamespacedClient):
|
|
|
406
406
|
you cannot specify an <index> in the request path.
|
|
407
407
|
:param post_filter:
|
|
408
408
|
:param preference: Specify the node or shard the operation should be performed
|
|
409
|
-
on
|
|
409
|
+
on
|
|
410
410
|
:param profile:
|
|
411
411
|
:param q: Query in the Lucene query string syntax
|
|
412
412
|
:param query: Defines the search definition using the Query DSL.
|
|
@@ -20,7 +20,11 @@ import typing as t
|
|
|
20
20
|
from elastic_transport import ObjectApiResponse
|
|
21
21
|
|
|
22
22
|
from ._base import NamespacedClient
|
|
23
|
-
from .utils import
|
|
23
|
+
from .utils import (
|
|
24
|
+
SKIP_IN_PATH,
|
|
25
|
+
_quote,
|
|
26
|
+
_rewrite_parameters,
|
|
27
|
+
)
|
|
24
28
|
|
|
25
29
|
|
|
26
30
|
class AutoscalingClient(NamespacedClient):
|
|
@@ -46,7 +50,7 @@ class AutoscalingClient(NamespacedClient):
|
|
|
46
50
|
|
|
47
51
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/autoscaling-delete-autoscaling-policy.html>`_
|
|
48
52
|
|
|
49
|
-
:param name:
|
|
53
|
+
:param name: Name of the autoscaling policy
|
|
50
54
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
51
55
|
no response is received before the timeout expires, the request fails and
|
|
52
56
|
returns an error.
|
|
@@ -153,7 +157,7 @@ class AutoscalingClient(NamespacedClient):
|
|
|
153
157
|
|
|
154
158
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/autoscaling-get-autoscaling-capacity.html>`_
|
|
155
159
|
|
|
156
|
-
:param name:
|
|
160
|
+
:param name: Name of the autoscaling policy
|
|
157
161
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
158
162
|
no response is received before the timeout expires, the request fails and
|
|
159
163
|
returns an error.
|
|
@@ -208,7 +212,7 @@ class AutoscalingClient(NamespacedClient):
|
|
|
208
212
|
|
|
209
213
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/autoscaling-put-autoscaling-policy.html>`_
|
|
210
214
|
|
|
211
|
-
:param name:
|
|
215
|
+
:param name: Name of the autoscaling policy
|
|
212
216
|
:param policy:
|
|
213
217
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
214
218
|
no response is received before the timeout expires, the request fails and
|
|
@@ -23,9 +23,9 @@ from ._base import NamespacedClient
|
|
|
23
23
|
from .utils import (
|
|
24
24
|
SKIP_IN_PATH,
|
|
25
25
|
Stability,
|
|
26
|
+
_availability_warning,
|
|
26
27
|
_quote,
|
|
27
28
|
_rewrite_parameters,
|
|
28
|
-
_stability_warning,
|
|
29
29
|
)
|
|
30
30
|
|
|
31
31
|
|
|
@@ -2895,10 +2895,20 @@ class CatClient(NamespacedClient):
|
|
|
2895
2895
|
self,
|
|
2896
2896
|
*,
|
|
2897
2897
|
index: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
2898
|
+
allow_closed: t.Optional[bool] = None,
|
|
2899
|
+
allow_no_indices: t.Optional[bool] = None,
|
|
2898
2900
|
bytes: t.Optional[
|
|
2899
2901
|
t.Union[str, t.Literal["b", "gb", "kb", "mb", "pb", "tb"]]
|
|
2900
2902
|
] = None,
|
|
2901
2903
|
error_trace: t.Optional[bool] = None,
|
|
2904
|
+
expand_wildcards: t.Optional[
|
|
2905
|
+
t.Union[
|
|
2906
|
+
t.Sequence[
|
|
2907
|
+
t.Union[str, t.Literal["all", "closed", "hidden", "none", "open"]]
|
|
2908
|
+
],
|
|
2909
|
+
t.Union[str, t.Literal["all", "closed", "hidden", "none", "open"]],
|
|
2910
|
+
]
|
|
2911
|
+
] = None,
|
|
2902
2912
|
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
2903
2913
|
format: t.Optional[str] = None,
|
|
2904
2914
|
h: t.Optional[
|
|
@@ -2949,6 +2959,8 @@ class CatClient(NamespacedClient):
|
|
|
2949
2959
|
] = None,
|
|
2950
2960
|
help: t.Optional[bool] = None,
|
|
2951
2961
|
human: t.Optional[bool] = None,
|
|
2962
|
+
ignore_throttled: t.Optional[bool] = None,
|
|
2963
|
+
ignore_unavailable: t.Optional[bool] = None,
|
|
2952
2964
|
local: t.Optional[bool] = None,
|
|
2953
2965
|
master_timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
|
|
2954
2966
|
pretty: t.Optional[bool] = None,
|
|
@@ -2972,6 +2984,14 @@ class CatClient(NamespacedClient):
|
|
|
2972
2984
|
:param index: A comma-separated list of data streams, indices, and aliases used
|
|
2973
2985
|
to limit the request. Supports wildcards (`*`). To target all data streams
|
|
2974
2986
|
and indices, omit this parameter or use `*` or `_all`.
|
|
2987
|
+
:param allow_closed: If true, allow closed indices to be returned in the response
|
|
2988
|
+
otherwise if false, keep the legacy behaviour of throwing an exception if
|
|
2989
|
+
index pattern matches closed indices
|
|
2990
|
+
:param allow_no_indices: If false, the request returns an error if any wildcard
|
|
2991
|
+
expression, index alias, or _all value targets only missing or closed indices.
|
|
2992
|
+
This behavior applies even if the request targets other open indices. For
|
|
2993
|
+
example, a request targeting foo*,bar* returns an error if an index starts
|
|
2994
|
+
with foo but no index starts with bar.
|
|
2975
2995
|
:param bytes: Sets the units for columns that contain a byte-size value. Note
|
|
2976
2996
|
that byte-size value units work in terms of powers of 1024. For instance
|
|
2977
2997
|
`1kb` means 1024 bytes, not 1000 bytes. If omitted, byte-size values are
|
|
@@ -2980,12 +3000,20 @@ class CatClient(NamespacedClient):
|
|
|
2980
3000
|
least `1.0`. If given, byte-size values are rendered as an integer with no
|
|
2981
3001
|
suffix, representing the value of the column in the chosen unit. Values that
|
|
2982
3002
|
are not an exact multiple of the chosen unit are rounded down.
|
|
3003
|
+
:param expand_wildcards: Type of index that wildcard expressions can match. If
|
|
3004
|
+
the request can target data streams, this argument determines whether wildcard
|
|
3005
|
+
expressions match hidden data streams. Supports comma-separated values, such
|
|
3006
|
+
as open,hidden.
|
|
2983
3007
|
:param format: Specifies the format to return the columnar data in, can be set
|
|
2984
3008
|
to `text`, `json`, `cbor`, `yaml`, or `smile`.
|
|
2985
3009
|
:param h: A comma-separated list of columns names to display. It supports simple
|
|
2986
3010
|
wildcards.
|
|
2987
3011
|
:param help: When set to `true` will output available columns. This option can't
|
|
2988
3012
|
be combined with any other query string option.
|
|
3013
|
+
:param ignore_throttled: If true, concrete, expanded or aliased indices are ignored
|
|
3014
|
+
when frozen.
|
|
3015
|
+
:param ignore_unavailable: If true, missing or closed indices are not included
|
|
3016
|
+
in the response.
|
|
2989
3017
|
:param local: If `true`, the request computes the list of selected nodes from
|
|
2990
3018
|
the local cluster state. If `false` the list of selected nodes are computed
|
|
2991
3019
|
from the cluster state of the master node. In both cases the coordinating
|
|
@@ -3010,10 +3038,16 @@ class CatClient(NamespacedClient):
|
|
|
3010
3038
|
__path_parts = {}
|
|
3011
3039
|
__path = "/_cat/segments"
|
|
3012
3040
|
__query: t.Dict[str, t.Any] = {}
|
|
3041
|
+
if allow_closed is not None:
|
|
3042
|
+
__query["allow_closed"] = allow_closed
|
|
3043
|
+
if allow_no_indices is not None:
|
|
3044
|
+
__query["allow_no_indices"] = allow_no_indices
|
|
3013
3045
|
if bytes is not None:
|
|
3014
3046
|
__query["bytes"] = bytes
|
|
3015
3047
|
if error_trace is not None:
|
|
3016
3048
|
__query["error_trace"] = error_trace
|
|
3049
|
+
if expand_wildcards is not None:
|
|
3050
|
+
__query["expand_wildcards"] = expand_wildcards
|
|
3017
3051
|
if filter_path is not None:
|
|
3018
3052
|
__query["filter_path"] = filter_path
|
|
3019
3053
|
if format is not None:
|
|
@@ -3024,6 +3058,10 @@ class CatClient(NamespacedClient):
|
|
|
3024
3058
|
__query["help"] = help
|
|
3025
3059
|
if human is not None:
|
|
3026
3060
|
__query["human"] = human
|
|
3061
|
+
if ignore_throttled is not None:
|
|
3062
|
+
__query["ignore_throttled"] = ignore_throttled
|
|
3063
|
+
if ignore_unavailable is not None:
|
|
3064
|
+
__query["ignore_unavailable"] = ignore_unavailable
|
|
3027
3065
|
if local is not None:
|
|
3028
3066
|
__query["local"] = local
|
|
3029
3067
|
if master_timeout is not None:
|
|
@@ -3455,7 +3493,7 @@ class CatClient(NamespacedClient):
|
|
|
3455
3493
|
)
|
|
3456
3494
|
|
|
3457
3495
|
@_rewrite_parameters()
|
|
3458
|
-
@
|
|
3496
|
+
@_availability_warning(Stability.EXPERIMENTAL)
|
|
3459
3497
|
async def tasks(
|
|
3460
3498
|
self,
|
|
3461
3499
|
*,
|
|
@@ -382,7 +382,7 @@ class CcrClient(NamespacedClient):
|
|
|
382
382
|
|
|
383
383
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/ccr-post-forget-follower.html>`_
|
|
384
384
|
|
|
385
|
-
:param index:
|
|
385
|
+
:param index: Name of the leader index for which specified follower retention
|
|
386
386
|
leases should be removed
|
|
387
387
|
:param follower_cluster:
|
|
388
388
|
:param follower_index:
|
|
@@ -862,7 +862,7 @@ class CcrClient(NamespacedClient):
|
|
|
862
862
|
|
|
863
863
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/ccr-post-resume-follow.html>`_
|
|
864
864
|
|
|
865
|
-
:param index:
|
|
865
|
+
:param index: Name of the follow index to resume following
|
|
866
866
|
:param master_timeout: Period to wait for a connection to the master node.
|
|
867
867
|
:param max_outstanding_read_requests:
|
|
868
868
|
:param max_outstanding_write_requests:
|
|
@@ -305,7 +305,7 @@ class ClusterClient(NamespacedClient):
|
|
|
305
305
|
request. Wildcard (`*`) expressions are supported.
|
|
306
306
|
:param flat_settings: If `true`, returns settings in flat format.
|
|
307
307
|
:param include_defaults: Return all default configurations for the component
|
|
308
|
-
template
|
|
308
|
+
template
|
|
309
309
|
:param local: If `true`, the request retrieves information from the local node
|
|
310
310
|
only. If `false`, information is retrieved from the master node.
|
|
311
311
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
@@ -882,10 +882,10 @@ class ClusterClient(NamespacedClient):
|
|
|
882
882
|
|
|
883
883
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/cluster-update-settings.html>`_
|
|
884
884
|
|
|
885
|
-
:param flat_settings: Return settings in flat format
|
|
886
|
-
:param master_timeout:
|
|
885
|
+
:param flat_settings: Return settings in flat format
|
|
886
|
+
:param master_timeout: The period to wait for a connection to the master node.
|
|
887
887
|
:param persistent: The settings that persist after the cluster restarts.
|
|
888
|
-
:param timeout:
|
|
888
|
+
:param timeout: The period to wait for a response.
|
|
889
889
|
:param transient: The settings that do not persist after the cluster restarts.
|
|
890
890
|
"""
|
|
891
891
|
__path_parts: t.Dict[str, str] = {}
|
|
@@ -1110,20 +1110,21 @@ class ClusterClient(NamespacedClient):
|
|
|
1110
1110
|
|
|
1111
1111
|
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.19/cluster-state.html>`_
|
|
1112
1112
|
|
|
1113
|
-
:param metric: Limit the information returned to the specified metrics
|
|
1113
|
+
:param metric: Limit the information returned to the specified metrics.
|
|
1114
1114
|
:param index: A comma-separated list of index names; use `_all` or empty string
|
|
1115
1115
|
to perform the operation on all indices
|
|
1116
1116
|
:param allow_no_indices: Whether to ignore if a wildcard indices expression resolves
|
|
1117
1117
|
into no concrete indices. (This includes `_all` string or when no indices
|
|
1118
1118
|
have been specified)
|
|
1119
1119
|
:param expand_wildcards: Whether to expand wildcard expression to concrete indices
|
|
1120
|
-
that are open, closed or both
|
|
1121
|
-
:param flat_settings: Return settings in flat format
|
|
1120
|
+
that are open, closed or both
|
|
1121
|
+
:param flat_settings: Return settings in flat format
|
|
1122
1122
|
:param ignore_unavailable: Whether specified concrete indices should be ignored
|
|
1123
1123
|
when unavailable (missing or closed)
|
|
1124
1124
|
:param local: Return local information, do not retrieve the state from master
|
|
1125
|
-
node
|
|
1126
|
-
:param master_timeout:
|
|
1125
|
+
node
|
|
1126
|
+
:param master_timeout: Timeout for waiting for new cluster state in case it is
|
|
1127
|
+
blocked
|
|
1127
1128
|
:param wait_for_metadata_version: Wait for the metadata version to be equal or
|
|
1128
1129
|
greater than the specified metadata version
|
|
1129
1130
|
:param wait_for_timeout: The maximum time to wait for wait_for_metadata_version
|