Skip to content

Commit

Permalink
fix(specs): Typos in API descriptions (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3932

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
  • Loading branch information
algolia-bot committed Oct 9, 2024
1 parent 891b9a1 commit 6ba14b7
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 46 deletions.
8 changes: 4 additions & 4 deletions algoliasearch/ingestion/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ async def list_events_with_http_info(
request_options: Optional[Union[dict, RequestOptions]] = None,
) -> ApiResponse[str]:
"""
Retrieves a list of events for a task run, identified by it's ID.
Retrieves a list of events for a task run, identified by its ID.
Required API Key ACLs:
- addObject
Expand Down Expand Up @@ -2490,7 +2490,7 @@ async def list_events(
request_options: Optional[Union[dict, RequestOptions]] = None,
) -> ListEventsResponse:
"""
Retrieves a list of events for a task run, identified by it's ID.
Retrieves a list of events for a task run, identified by its ID.
Required API Key ACLs:
- addObject
Expand Down Expand Up @@ -7085,7 +7085,7 @@ def list_events_with_http_info(
request_options: Optional[Union[dict, RequestOptions]] = None,
) -> ApiResponse[str]:
"""
Retrieves a list of events for a task run, identified by it's ID.
Retrieves a list of events for a task run, identified by its ID.
Required API Key ACLs:
- addObject
Expand Down Expand Up @@ -7204,7 +7204,7 @@ def list_events(
request_options: Optional[Union[dict, RequestOptions]] = None,
) -> ListEventsResponse:
"""
Retrieves a list of events for a task run, identified by it's ID.
Retrieves a list of events for a task run, identified by its ID.
Required API Key ACLs:
- addObject
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/ingestion/models/transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Transformation(BaseModel):
transformation_id: str
""" Universally unique identifier (UUID) of a transformation. """
authentication_ids: Optional[List[str]] = None
""" The authentications associated for the current transformation. """
""" The authentications associated with the current transformation. """
code: str
""" The source code of the transformation. """
name: str
Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/ingestion/models/transformation_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TransformationCreate(BaseModel):
description: Optional[str] = None
""" A descriptive name for your transformation of what it does. """
authentication_ids: Optional[List[str]] = None
""" The authentications associated for the current transformation. """
""" The authentications associated with the current transformation. """

model_config = ConfigDict(
use_enum_values=True,
Expand Down
Loading

0 comments on commit 6ba14b7

Please sign in to comment.