@@ -92,7 +92,7 @@ def get(self, *, timeout: timedelta | None = None) -> Actor | None:
9292 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
9393
9494 Args:
95- timeout: Timeout for the HTTP request.
95+ timeout: Timeout for the API HTTP request.
9696
9797 Returns:
9898 The retrieved Actor.
@@ -169,7 +169,7 @@ def update(
169169 tagged_builds: A dictionary mapping build tag names to their settings. Use it to create, update,
170170 or remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,
171171 set its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.
172- timeout: Timeout for the HTTP request.
172+ timeout: Timeout for the API HTTP request.
173173
174174 Returns:
175175 The updated Actor.
@@ -216,7 +216,7 @@ def delete(self, *, timeout: timedelta | None = None) -> None:
216216 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
217217
218218 Args:
219- timeout: Timeout for the HTTP request.
219+ timeout: Timeout for the API HTTP request.
220220 """
221221 self ._delete (timeout = timeout )
222222
@@ -265,7 +265,7 @@ def start(
265265 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
266266 * `request_url`: URL to which to send the webhook HTTP request.
267267 * `payload_template`: Optional template for the request payload.
268- timeout: Timeout for the HTTP request.
268+ timeout: Timeout for the API HTTP request.
269269
270270 Returns:
271271 The run object.
@@ -344,7 +344,7 @@ def call(
344344 default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
345345 will redirect logs to the provided logger. The logger is also used to capture status and status message
346346 of the other Actor run.
347- timeout: Timeout for the HTTP request.
347+ timeout: Timeout for the API HTTP request.
348348
349349 Returns:
350350 The run object.
@@ -404,7 +404,7 @@ def build(
404404 This is to enable quick rebuild during development. By default, the cache is not used.
405405 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
406406 By default it is 0, the maximum value is 60.
407- timeout: Timeout for the HTTP request.
407+ timeout: Timeout for the API HTTP request.
408408
409409 Returns:
410410 The build object.
@@ -454,7 +454,7 @@ def default_build(
454454 Args:
455455 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
456456 By default it is 0, the maximum value is 60.
457- timeout: Timeout for the HTTP request.
457+ timeout: Timeout for the API HTTP request.
458458
459459 Returns:
460460 The resource client for the default build of this Actor.
@@ -539,7 +539,7 @@ def validate_input(
539539 run_input: The input to validate.
540540 build_tag: The Actor's build tag.
541541 content_type: The content type of the input.
542- timeout: Timeout for the HTTP request.
542+ timeout: Timeout for the API HTTP request.
543543
544544 Returns:
545545 True if the input is valid, else raise an exception with validation error details.
@@ -585,7 +585,7 @@ async def get(self, *, timeout: timedelta | None = None) -> Actor | None:
585585 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
586586
587587 Args:
588- timeout: Timeout for the HTTP request.
588+ timeout: Timeout for the API HTTP request.
589589
590590 Returns:
591591 The retrieved Actor.
@@ -662,7 +662,7 @@ async def update(
662662 tagged_builds: A dictionary mapping build tag names to their settings. Use it to create, update,
663663 or remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,
664664 set its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.
665- timeout: Timeout for the HTTP request.
665+ timeout: Timeout for the API HTTP request.
666666
667667 Returns:
668668 The updated Actor.
@@ -709,7 +709,7 @@ async def delete(self, *, timeout: timedelta | None = None) -> None:
709709 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
710710
711711 Args:
712- timeout: Timeout for the HTTP request.
712+ timeout: Timeout for the API HTTP request.
713713 """
714714 await self ._delete (timeout = timeout )
715715
@@ -758,7 +758,7 @@ async def start(
758758 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
759759 * `request_url`: URL to which to send the webhook HTTP request.
760760 * `payload_template`: Optional template for the request payload.
761- timeout: Timeout for the HTTP request.
761+ timeout: Timeout for the API HTTP request.
762762
763763 Returns:
764764 The run object.
@@ -837,7 +837,7 @@ async def call(
837837 default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
838838 will redirect logs to the provided logger. The logger is also used to capture status and status message
839839 of the other Actor run.
840- timeout: Timeout for the HTTP request.
840+ timeout: Timeout for the API HTTP request.
841841
842842 Returns:
843843 The run object.
@@ -901,7 +901,7 @@ async def build(
901901 This is to enable quick rebuild during development. By default, the cache is not used.
902902 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
903903 By default it is 0, the maximum value is 60.
904- timeout: Timeout for the HTTP request.
904+ timeout: Timeout for the API HTTP request.
905905
906906 Returns:
907907 The build object.
@@ -951,7 +951,7 @@ async def default_build(
951951 Args:
952952 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
953953 By default it is 0, the maximum value is 60.
954- timeout: Timeout for the HTTP request.
954+ timeout: Timeout for the API HTTP request.
955955
956956 Returns:
957957 The resource client for the default build of this Actor.
@@ -1039,7 +1039,7 @@ async def validate_input(
10391039 run_input: The input to validate.
10401040 build_tag: The Actor's build tag.
10411041 content_type: The content type of the input.
1042- timeout: Timeout for the HTTP request.
1042+ timeout: Timeout for the API HTTP request.
10431043
10441044 Returns:
10451045 True if the input is valid, else raise an exception with validation error details.
0 commit comments