Modified generator to generate plugins (#700)

Signed-off-by: saimedhi <[email protected]>
This commit is contained in:
Sai Medhini Reddy Maryada
2024-03-22 07:53:28 -04:00
committed by GitHub
parent bd915301e5
commit 25db5d5c8a
8 changed files with 94 additions and 12 deletions
+5
View File
@@ -1601,6 +1601,7 @@ class AsyncOpenSearch(Client):
"from_",
"ignore_throttled",
"ignore_unavailable",
"include_named_queries_score",
"lenient",
"max_concurrent_shard_requests",
"pre_filter_shard_size",
@@ -1681,6 +1682,10 @@ class AsyncOpenSearch(Client):
aliased indices should be ignored when throttled.
:arg ignore_unavailable: Whether specified concrete indices
should be ignored when unavailable (missing or closed).
:arg include_named_queries_score: Indicates whether
hit.matched_queries should be rendered as a map that includes the name
of the matched query associated with its score (true) or as an array
containing the name of the matched queries (false) Default is false.
:arg lenient: Specify whether format-based query failures (such
as providing text to a numeric field) should be ignored.
:arg max_concurrent_shard_requests: The number of concurrent
+3
View File
@@ -1260,6 +1260,7 @@ class IndicesClient(NamespacedClient):
"ignore_unavailable",
"max_num_segments",
"only_expunge_deletes",
"primary_only",
"wait_for_completion",
)
async def forcemerge(
@@ -1288,6 +1289,8 @@ class IndicesClient(NamespacedClient):
be merged into (default: dynamic).
:arg only_expunge_deletes: Specify whether the operation should
only expunge deleted documents.
:arg primary_only: Specify whether the operation should only
perform on primary shards. Defaults to false. Default is false.
:arg wait_for_completion: Should this request wait until the
operation has completed before returning. Default is True.
"""
+5
View File
@@ -1601,6 +1601,7 @@ class OpenSearch(Client):
"from_",
"ignore_throttled",
"ignore_unavailable",
"include_named_queries_score",
"lenient",
"max_concurrent_shard_requests",
"pre_filter_shard_size",
@@ -1681,6 +1682,10 @@ class OpenSearch(Client):
aliased indices should be ignored when throttled.
:arg ignore_unavailable: Whether specified concrete indices
should be ignored when unavailable (missing or closed).
:arg include_named_queries_score: Indicates whether
hit.matched_queries should be rendered as a map that includes the name
of the matched query associated with its score (true) or as an array
containing the name of the matched queries (false) Default is false.
:arg lenient: Specify whether format-based query failures (such
as providing text to a numeric field) should be ignored.
:arg max_concurrent_shard_requests: The number of concurrent
+3
View File
@@ -1260,6 +1260,7 @@ class IndicesClient(NamespacedClient):
"ignore_unavailable",
"max_num_segments",
"only_expunge_deletes",
"primary_only",
"wait_for_completion",
)
def forcemerge(
@@ -1288,6 +1289,8 @@ class IndicesClient(NamespacedClient):
be merged into (default: dynamic).
:arg only_expunge_deletes: Specify whether the operation should
only expunge deleted documents.
:arg primary_only: Specify whether the operation should only
perform on primary shards. Defaults to false. Default is false.
:arg wait_for_completion: Should this request wait until the
operation has completed before returning. Default is True.
"""
-1
View File
@@ -6,4 +6,3 @@
#
# Modifications Copyright OpenSearch Contributors. See
# GitHub history for details.
#