diff --git a/algoliasearch/ingestion/client.py b/algoliasearch/ingestion/client.py index 563f8e405..ef54ff363 100644 --- a/algoliasearch/ingestion/client.py +++ b/algoliasearch/ingestion/client.py @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/algoliasearch/ingestion/models/transformation.py b/algoliasearch/ingestion/models/transformation.py index 7209edb13..e70002637 100644 --- a/algoliasearch/ingestion/models/transformation.py +++ b/algoliasearch/ingestion/models/transformation.py @@ -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 diff --git a/algoliasearch/ingestion/models/transformation_create.py b/algoliasearch/ingestion/models/transformation_create.py index aeb86f6da..a3256cd47 100644 --- a/algoliasearch/ingestion/models/transformation_create.py +++ b/algoliasearch/ingestion/models/transformation_create.py @@ -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, diff --git a/algoliasearch/monitoring/client.py b/algoliasearch/monitoring/client.py index 087011311..9a31ae2ca 100644 --- a/algoliasearch/monitoring/client.py +++ b/algoliasearch/monitoring/client.py @@ -461,7 +461,7 @@ async def custom_put( async def get_cluster_incidents_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -469,7 +469,7 @@ async def get_cluster_incidents_with_http_info( Retrieves known incidents for the selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -494,7 +494,7 @@ async def get_cluster_incidents_with_http_info( async def get_cluster_incidents( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> IncidentsResponse: @@ -502,7 +502,7 @@ async def get_cluster_incidents( Retrieves known incidents for the selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'IncidentsResponse' result object. @@ -515,7 +515,7 @@ async def get_cluster_incidents( async def get_cluster_status_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -523,7 +523,7 @@ async def get_cluster_status_with_http_info( Retrieves the status of selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -548,7 +548,7 @@ async def get_cluster_status_with_http_info( async def get_cluster_status( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> StatusResponse: @@ -556,7 +556,7 @@ async def get_cluster_status( Retrieves the status of selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'StatusResponse' result object. @@ -600,7 +600,7 @@ async def get_incidents( async def get_indexing_time_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -608,7 +608,7 @@ async def get_indexing_time_with_http_info( Retrieves average times for indexing operations for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -633,7 +633,7 @@ async def get_indexing_time_with_http_info( async def get_indexing_time( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> IndexingTimeResponse: @@ -641,7 +641,7 @@ async def get_indexing_time( Retrieves average times for indexing operations for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'IndexingTimeResponse' result object. @@ -652,7 +652,7 @@ async def get_indexing_time( async def get_latency_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -660,7 +660,7 @@ async def get_latency_with_http_info( Retrieves the average latency for search requests for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -685,7 +685,7 @@ async def get_latency_with_http_info( async def get_latency( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> LatencyResponse: @@ -693,7 +693,7 @@ async def get_latency( Retrieves the average latency for search requests for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'LatencyResponse' result object. @@ -795,7 +795,7 @@ async def get_metrics( async def get_reachability_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -803,7 +803,7 @@ async def get_reachability_with_http_info( Test whether clusters are reachable or not. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -828,7 +828,7 @@ async def get_reachability_with_http_info( async def get_reachability( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> Dict[str, Dict[str, bool]]: @@ -836,7 +836,7 @@ async def get_reachability( Test whether clusters are reachable or not. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'Dict[str, Dict[str, bool]]' result object. @@ -1326,7 +1326,7 @@ def custom_put( def get_cluster_incidents_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -1334,7 +1334,7 @@ def get_cluster_incidents_with_http_info( Retrieves known incidents for the selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -1359,7 +1359,7 @@ def get_cluster_incidents_with_http_info( def get_cluster_incidents( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> IncidentsResponse: @@ -1367,7 +1367,7 @@ def get_cluster_incidents( Retrieves known incidents for the selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'IncidentsResponse' result object. @@ -1378,7 +1378,7 @@ def get_cluster_incidents( def get_cluster_status_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -1386,7 +1386,7 @@ def get_cluster_status_with_http_info( Retrieves the status of selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -1411,7 +1411,7 @@ def get_cluster_status_with_http_info( def get_cluster_status( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> StatusResponse: @@ -1419,7 +1419,7 @@ def get_cluster_status( Retrieves the status of selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'StatusResponse' result object. @@ -1463,7 +1463,7 @@ def get_incidents( def get_indexing_time_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -1471,7 +1471,7 @@ def get_indexing_time_with_http_info( Retrieves average times for indexing operations for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -1496,7 +1496,7 @@ def get_indexing_time_with_http_info( def get_indexing_time( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> IndexingTimeResponse: @@ -1504,7 +1504,7 @@ def get_indexing_time( Retrieves average times for indexing operations for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'IndexingTimeResponse' result object. @@ -1515,7 +1515,7 @@ def get_indexing_time( def get_latency_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -1523,7 +1523,7 @@ def get_latency_with_http_info( Retrieves the average latency for search requests for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -1548,7 +1548,7 @@ def get_latency_with_http_info( def get_latency( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> LatencyResponse: @@ -1556,7 +1556,7 @@ def get_latency( Retrieves the average latency for search requests for selected clusters. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'LatencyResponse' result object. @@ -1658,7 +1658,7 @@ def get_metrics( def get_reachability_with_http_info( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> ApiResponse[str]: @@ -1666,7 +1666,7 @@ def get_reachability_with_http_info( Test whether clusters are reachable or not. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the raw algoliasearch 'APIResponse' object. @@ -1691,7 +1691,7 @@ def get_reachability_with_http_info( def get_reachability( self, clusters: Annotated[ - StrictStr, Field(description="Subset of clusters, separated by comma.") + StrictStr, Field(description="Subset of clusters, separated by commas.") ], request_options: Optional[Union[dict, RequestOptions]] = None, ) -> Dict[str, Dict[str, bool]]: @@ -1699,7 +1699,7 @@ def get_reachability( Test whether clusters are reachable or not. - :param clusters: Subset of clusters, separated by comma. (required) + :param clusters: Subset of clusters, separated by commas. (required) :type clusters: str :param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional) :return: Returns the deserialized response in a 'Dict[str, Dict[str, bool]]' result object.