@@ -91,8 +91,7 @@ def get(self, *, timeout: Timeout = 'short') -> Actor | None:
9191 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
9292
9393 Args:
94- timeout: Timeout for the API HTTP request. Uses the method's default tier.
95- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
94+ timeout: Timeout for the API HTTP request.
9695
9796 Returns:
9897 The retrieved Actor.
@@ -169,8 +168,7 @@ def update(
169168 tagged_builds: A dictionary mapping build tag names to their settings. Use it to create, update,
170169 or remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,
171170 set its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.
172- timeout: Timeout for the API HTTP request. Uses the method's default tier.
173- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
171+ timeout: Timeout for the API HTTP request.
174172
175173 Returns:
176174 The updated Actor.
@@ -217,8 +215,7 @@ def delete(self, *, timeout: Timeout = 'short') -> None:
217215 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
218216
219217 Args:
220- timeout: Timeout for the API HTTP request. Uses the method's default tier.
221- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
218+ timeout: Timeout for the API HTTP request.
222219 """
223220 self ._delete (timeout = timeout )
224221
@@ -267,8 +264,7 @@ def start(
267264 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
268265 * `request_url`: URL to which to send the webhook HTTP request.
269266 * `payload_template`: Optional template for the request payload.
270- timeout: Timeout for the API HTTP request. Uses the method's default tier.
271- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
267+ timeout: Timeout for the API HTTP request.
272268
273269 Returns:
274270 The run object.
@@ -347,8 +343,7 @@ def call(
347343 default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
348344 will redirect logs to the provided logger. The logger is also used to capture status and status message
349345 of the other Actor run.
350- timeout: Timeout for the API HTTP request. Uses the method's default tier.
351- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
346+ timeout: Timeout for the API HTTP request.
352347
353348 Returns:
354349 The run object.
@@ -408,8 +403,7 @@ def build(
408403 This is to enable quick rebuild during development. By default, the cache is not used.
409404 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
410405 By default it is 0, the maximum value is 60.
411- timeout: Timeout for the API HTTP request. Uses the method's default tier.
412- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
406+ timeout: Timeout for the API HTTP request.
413407
414408 Returns:
415409 The build object.
@@ -459,8 +453,7 @@ def default_build(
459453 Args:
460454 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
461455 By default it is 0, the maximum value is 60.
462- timeout: Timeout for the API HTTP request. Uses the method's default tier.
463- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
456+ timeout: Timeout for the API HTTP request.
464457
465458 Returns:
466459 The resource client for the default build of this Actor.
@@ -548,8 +541,7 @@ def validate_input(
548541 run_input: The input to validate.
549542 build_tag: The Actor's build tag.
550543 content_type: The content type of the input.
551- timeout: Timeout for the API HTTP request. Uses the method's default tier.
552- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
544+ timeout: Timeout for the API HTTP request.
553545
554546 Returns:
555547 True if the input is valid, else raise an exception with validation error details.
@@ -595,8 +587,7 @@ async def get(self, *, timeout: Timeout = 'short') -> Actor | None:
595587 https://docs.apify.com/api/v2#/reference/actors/actor-object/get-actor
596588
597589 Args:
598- timeout: Timeout for the API HTTP request. Uses the method's default tier.
599- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
590+ timeout: Timeout for the API HTTP request.
600591
601592 Returns:
602593 The retrieved Actor.
@@ -673,8 +664,7 @@ async def update(
673664 tagged_builds: A dictionary mapping build tag names to their settings. Use it to create, update,
674665 or remove build tags. To assign a tag, provide a dict with 'buildId' key. To remove a tag,
675666 set its value to None. Example: {'latest': {'buildId': 'abc'}, 'beta': None}.
676- timeout: Timeout for the API HTTP request. Uses the method's default tier.
677- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
667+ timeout: Timeout for the API HTTP request.
678668
679669 Returns:
680670 The updated Actor.
@@ -721,8 +711,7 @@ async def delete(self, *, timeout: Timeout = 'short') -> None:
721711 https://docs.apify.com/api/v2#/reference/actors/actor-object/delete-actor
722712
723713 Args:
724- timeout: Timeout for the API HTTP request. Uses the method's default tier.
725- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
714+ timeout: Timeout for the API HTTP request.
726715 """
727716 await self ._delete (timeout = timeout )
728717
@@ -771,8 +760,7 @@ async def start(
771760 * `event_types`: List of `WebhookEventType` values which trigger the webhook.
772761 * `request_url`: URL to which to send the webhook HTTP request.
773762 * `payload_template`: Optional template for the request payload.
774- timeout: Timeout for the API HTTP request. Uses the method's default tier.
775- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
763+ timeout: Timeout for the API HTTP request.
776764
777765 Returns:
778766 The run object.
@@ -851,8 +839,7 @@ async def call(
851839 default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
852840 will redirect logs to the provided logger. The logger is also used to capture status and status message
853841 of the other Actor run.
854- timeout: Timeout for the API HTTP request. Uses the method's default tier.
855- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
842+ timeout: Timeout for the API HTTP request.
856843
857844 Returns:
858845 The run object.
@@ -916,8 +903,7 @@ async def build(
916903 This is to enable quick rebuild during development. By default, the cache is not used.
917904 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
918905 By default it is 0, the maximum value is 60.
919- timeout: Timeout for the API HTTP request. Uses the method's default tier.
920- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
906+ timeout: Timeout for the API HTTP request.
921907
922908 Returns:
923909 The build object.
@@ -967,8 +953,7 @@ async def default_build(
967953 Args:
968954 wait_for_finish: The maximum number of seconds the server waits for the build to finish before returning.
969955 By default it is 0, the maximum value is 60.
970- timeout: Timeout for the API HTTP request. Uses the method's default tier.
971- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
956+ timeout: Timeout for the API HTTP request.
972957
973958 Returns:
974959 The resource client for the default build of this Actor.
@@ -1056,8 +1041,7 @@ async def validate_input(
10561041 run_input: The input to validate.
10571042 build_tag: The Actor's build tag.
10581043 content_type: The content type of the input.
1059- timeout: Timeout for the API HTTP request. Uses the method's default tier.
1060- Use `'short'`, `'default'`, or `'long'` tier literals, a `timedelta`, or `'no_timeout'`.
1044+ timeout: Timeout for the API HTTP request.
10611045
10621046 Returns:
10631047 True if the input is valid, else raise an exception with validation error details.
0 commit comments