Skip to content

Commit

Permalink
Auto-generated API code
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine committed Aug 19, 2024
1 parent 4a02249 commit c5455b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion elasticsearch/_async/client/synonyms.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ async def put_synonym(
self,
*,
id: str,
synonyms_set: t.Optional[t.Sequence[t.Mapping[str, t.Any]]] = None,
synonyms_set: t.Optional[
t.Union[t.Mapping[str, t.Any], t.Sequence[t.Mapping[str, t.Any]]]
] = None,
error_trace: t.Optional[bool] = None,
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
human: t.Optional[bool] = None,
Expand Down
4 changes: 3 additions & 1 deletion elasticsearch/_sync/client/synonyms.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ def put_synonym(
self,
*,
id: str,
synonyms_set: t.Optional[t.Sequence[t.Mapping[str, t.Any]]] = None,
synonyms_set: t.Optional[
t.Union[t.Mapping[str, t.Any], t.Sequence[t.Mapping[str, t.Any]]]
] = None,
error_trace: t.Optional[bool] = None,
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
human: t.Optional[bool] = None,
Expand Down

0 comments on commit c5455b6

Please sign in to comment.