elasticsearch 8.13.2__py3-none-any.whl → 8.14.0__py3-none-any.whl
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/_async/client/__init__.py +51 -44
- elasticsearch/_async/client/async_search.py +4 -4
- elasticsearch/_async/client/autoscaling.py +4 -4
- elasticsearch/_async/client/cat.py +26 -26
- elasticsearch/_async/client/ccr.py +13 -13
- elasticsearch/_async/client/cluster.py +23 -25
- elasticsearch/_async/client/dangling_indices.py +3 -3
- elasticsearch/_async/client/enrich.py +5 -5
- elasticsearch/_async/client/eql.py +4 -4
- elasticsearch/_async/client/esql.py +1 -1
- elasticsearch/_async/client/features.py +2 -2
- elasticsearch/_async/client/fleet.py +1 -1
- elasticsearch/_async/client/graph.py +1 -1
- elasticsearch/_async/client/ilm.py +11 -11
- elasticsearch/_async/client/indices.py +182 -157
- elasticsearch/_async/client/inference.py +34 -17
- elasticsearch/_async/client/ingest.py +6 -6
- elasticsearch/_async/client/license.py +7 -7
- elasticsearch/_async/client/logstash.py +3 -3
- elasticsearch/_async/client/migration.py +3 -3
- elasticsearch/_async/client/ml.py +73 -73
- elasticsearch/_async/client/monitoring.py +1 -1
- elasticsearch/_async/client/nodes.py +7 -7
- elasticsearch/_async/client/query_ruleset.py +4 -4
- elasticsearch/_async/client/rollup.py +8 -8
- elasticsearch/_async/client/search_application.py +13 -8
- elasticsearch/_async/client/searchable_snapshots.py +4 -4
- elasticsearch/_async/client/security.py +63 -53
- elasticsearch/_async/client/slm.py +9 -9
- elasticsearch/_async/client/snapshot.py +11 -11
- elasticsearch/_async/client/sql.py +6 -6
- elasticsearch/_async/client/ssl.py +1 -1
- elasticsearch/_async/client/synonyms.py +7 -7
- elasticsearch/_async/client/tasks.py +3 -3
- elasticsearch/_async/client/text_structure.py +2 -2
- elasticsearch/_async/client/transform.py +11 -11
- elasticsearch/_async/client/watcher.py +11 -11
- elasticsearch/_async/client/xpack.py +2 -2
- elasticsearch/_sync/client/__init__.py +51 -44
- elasticsearch/_sync/client/async_search.py +4 -4
- elasticsearch/_sync/client/autoscaling.py +4 -4
- elasticsearch/_sync/client/cat.py +26 -26
- elasticsearch/_sync/client/ccr.py +13 -13
- elasticsearch/_sync/client/cluster.py +23 -25
- elasticsearch/_sync/client/dangling_indices.py +3 -3
- elasticsearch/_sync/client/enrich.py +5 -5
- elasticsearch/_sync/client/eql.py +4 -4
- elasticsearch/_sync/client/esql.py +1 -1
- elasticsearch/_sync/client/features.py +2 -2
- elasticsearch/_sync/client/fleet.py +1 -1
- elasticsearch/_sync/client/graph.py +1 -1
- elasticsearch/_sync/client/ilm.py +11 -11
- elasticsearch/_sync/client/indices.py +182 -157
- elasticsearch/_sync/client/inference.py +34 -17
- elasticsearch/_sync/client/ingest.py +6 -6
- elasticsearch/_sync/client/license.py +7 -7
- elasticsearch/_sync/client/logstash.py +3 -3
- elasticsearch/_sync/client/migration.py +3 -3
- elasticsearch/_sync/client/ml.py +73 -73
- elasticsearch/_sync/client/monitoring.py +1 -1
- elasticsearch/_sync/client/nodes.py +7 -7
- elasticsearch/_sync/client/query_ruleset.py +4 -4
- elasticsearch/_sync/client/rollup.py +8 -8
- elasticsearch/_sync/client/search_application.py +13 -8
- elasticsearch/_sync/client/searchable_snapshots.py +4 -4
- elasticsearch/_sync/client/security.py +63 -53
- elasticsearch/_sync/client/slm.py +9 -9
- elasticsearch/_sync/client/snapshot.py +11 -11
- elasticsearch/_sync/client/sql.py +6 -6
- elasticsearch/_sync/client/ssl.py +1 -1
- elasticsearch/_sync/client/synonyms.py +7 -7
- elasticsearch/_sync/client/tasks.py +3 -3
- elasticsearch/_sync/client/text_structure.py +2 -2
- elasticsearch/_sync/client/transform.py +11 -11
- elasticsearch/_sync/client/watcher.py +11 -11
- elasticsearch/_sync/client/xpack.py +2 -2
- elasticsearch/_version.py +1 -1
- elasticsearch/serializer.py +0 -1
- {elasticsearch-8.13.2.dist-info → elasticsearch-8.14.0.dist-info}/METADATA +15 -1
- elasticsearch-8.14.0.dist-info/RECORD +116 -0
- elasticsearch-8.13.2.dist-info/RECORD +0 -116
- {elasticsearch-8.13.2.dist-info → elasticsearch-8.14.0.dist-info}/LICENSE +0 -0
- {elasticsearch-8.13.2.dist-info → elasticsearch-8.14.0.dist-info}/NOTICE +0 -0
- {elasticsearch-8.13.2.dist-info → elasticsearch-8.14.0.dist-info}/WHEEL +0 -0
- {elasticsearch-8.13.2.dist-info → elasticsearch-8.14.0.dist-info}/top_level.txt +0 -0
|
@@ -38,7 +38,7 @@ class FeaturesClient(NamespacedClient):
|
|
|
38
38
|
Gets a list of features which can be included in snapshots using the feature_states
|
|
39
39
|
field when creating a snapshot
|
|
40
40
|
|
|
41
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
41
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/get-features-api.html>`_
|
|
42
42
|
"""
|
|
43
43
|
__path_parts: t.Dict[str, str] = {}
|
|
44
44
|
__path = "/_features"
|
|
@@ -73,7 +73,7 @@ class FeaturesClient(NamespacedClient):
|
|
|
73
73
|
"""
|
|
74
74
|
Resets the internal state of features, usually by deleting system indices
|
|
75
75
|
|
|
76
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
76
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/modules-snapshots.html>`_
|
|
77
77
|
"""
|
|
78
78
|
__path_parts: t.Dict[str, str] = {}
|
|
79
79
|
__path = "/_features/_reset"
|
|
@@ -43,7 +43,7 @@ class FleetClient(NamespacedClient):
|
|
|
43
43
|
Returns the current global checkpoints for an index. This API is design for internal
|
|
44
44
|
use by the fleet server project.
|
|
45
45
|
|
|
46
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
46
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/get-global-checkpoints.html>`_
|
|
47
47
|
|
|
48
48
|
:param index: A single index or index alias that resolves to a single index.
|
|
49
49
|
:param checkpoints: A comma separated list of previous global checkpoints. When
|
|
@@ -48,7 +48,7 @@ class GraphClient(NamespacedClient):
|
|
|
48
48
|
Explore extracted and summarized information about the documents and terms in
|
|
49
49
|
an index.
|
|
50
50
|
|
|
51
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
51
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/graph-explore-api.html>`_
|
|
52
52
|
|
|
53
53
|
:param index: Name of the index.
|
|
54
54
|
:param connections: Specifies or more fields from which you want to extract terms
|
|
@@ -43,7 +43,7 @@ class IlmClient(NamespacedClient):
|
|
|
43
43
|
Deletes the specified lifecycle policy definition. A currently used policy cannot
|
|
44
44
|
be deleted.
|
|
45
45
|
|
|
46
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
46
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-delete-lifecycle.html>`_
|
|
47
47
|
|
|
48
48
|
:param name: Identifier for the policy.
|
|
49
49
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
@@ -99,7 +99,7 @@ class IlmClient(NamespacedClient):
|
|
|
99
99
|
Retrieves information about the index's current lifecycle state, such as the
|
|
100
100
|
currently executing phase, action, and step.
|
|
101
101
|
|
|
102
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
102
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-explain-lifecycle.html>`_
|
|
103
103
|
|
|
104
104
|
:param index: Comma-separated list of data streams, indices, and aliases to target.
|
|
105
105
|
Supports wildcards (`*`). To target all data streams and indices, use `*`
|
|
@@ -164,7 +164,7 @@ class IlmClient(NamespacedClient):
|
|
|
164
164
|
Returns the specified policy definition. Includes the policy version and last
|
|
165
165
|
modified date.
|
|
166
166
|
|
|
167
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
167
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-get-lifecycle.html>`_
|
|
168
168
|
|
|
169
169
|
:param name: Identifier for the policy.
|
|
170
170
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
@@ -215,7 +215,7 @@ class IlmClient(NamespacedClient):
|
|
|
215
215
|
"""
|
|
216
216
|
Retrieves the current index lifecycle management (ILM) status.
|
|
217
217
|
|
|
218
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
218
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-get-status.html>`_
|
|
219
219
|
"""
|
|
220
220
|
__path_parts: t.Dict[str, str] = {}
|
|
221
221
|
__path = "/_ilm/status"
|
|
@@ -257,7 +257,7 @@ class IlmClient(NamespacedClient):
|
|
|
257
257
|
Migrates the indices and ILM policies away from custom node attribute allocation
|
|
258
258
|
routing to data tiers routing
|
|
259
259
|
|
|
260
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
260
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-migrate-to-data-tiers.html>`_
|
|
261
261
|
|
|
262
262
|
:param dry_run: If true, simulates the migration from node attributes based allocation
|
|
263
263
|
filters to data tiers, but does not perform the migration. This provides
|
|
@@ -317,7 +317,7 @@ class IlmClient(NamespacedClient):
|
|
|
317
317
|
"""
|
|
318
318
|
Manually moves an index into the specified step and executes that step.
|
|
319
319
|
|
|
320
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
320
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-move-to-step.html>`_
|
|
321
321
|
|
|
322
322
|
:param index: The name of the index whose lifecycle step is to change
|
|
323
323
|
:param current_step:
|
|
@@ -378,7 +378,7 @@ class IlmClient(NamespacedClient):
|
|
|
378
378
|
"""
|
|
379
379
|
Creates a lifecycle policy
|
|
380
380
|
|
|
381
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
381
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-put-lifecycle.html>`_
|
|
382
382
|
|
|
383
383
|
:param name: Identifier for the policy.
|
|
384
384
|
:param master_timeout: Period to wait for a connection to the master node. If
|
|
@@ -437,7 +437,7 @@ class IlmClient(NamespacedClient):
|
|
|
437
437
|
"""
|
|
438
438
|
Removes the assigned lifecycle policy and stops managing the specified index
|
|
439
439
|
|
|
440
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
440
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-remove-policy.html>`_
|
|
441
441
|
|
|
442
442
|
:param index: The name of the index to remove policy on
|
|
443
443
|
"""
|
|
@@ -477,7 +477,7 @@ class IlmClient(NamespacedClient):
|
|
|
477
477
|
"""
|
|
478
478
|
Retries executing the policy for an index that is in the ERROR step.
|
|
479
479
|
|
|
480
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
480
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-retry-policy.html>`_
|
|
481
481
|
|
|
482
482
|
:param index: The name of the indices (comma-separated) whose failed lifecycle
|
|
483
483
|
step is to be retry
|
|
@@ -521,7 +521,7 @@ class IlmClient(NamespacedClient):
|
|
|
521
521
|
"""
|
|
522
522
|
Start the index lifecycle management (ILM) plugin.
|
|
523
523
|
|
|
524
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
524
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-start.html>`_
|
|
525
525
|
|
|
526
526
|
:param master_timeout:
|
|
527
527
|
:param timeout:
|
|
@@ -568,7 +568,7 @@ class IlmClient(NamespacedClient):
|
|
|
568
568
|
Halts all lifecycle management operations and stops the index lifecycle management
|
|
569
569
|
(ILM) plugin
|
|
570
570
|
|
|
571
|
-
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.
|
|
571
|
+
`<https://www.elastic.co/guide/en/elasticsearch/reference/8.14/ilm-stop.html>`_
|
|
572
572
|
|
|
573
573
|
:param master_timeout:
|
|
574
574
|
:param timeout:
|